Source
http://ajax.microsoft.com/ajax/jquery/jquery-1.3.2.min.js
Wednesday, September 16, 2009
Friday, September 11, 2009
How to improve the performance of ASP.NET MVC web application
Source
Implementing Caching
Implementing HTTP Compression
Implementing JQuery UI library with Google Hosted Ajax Libraries
By combining scripts and other resources
Deploying production code in release mode
Removing default HTTP modules in ASP.NET
Optimizing URL generation
Implementing Caching
Implementing HTTP Compression
Implementing JQuery UI library with Google Hosted Ajax Libraries
By combining scripts and other resources
Deploying production code in release mode
Removing default HTTP modules in ASP.NET
Optimizing URL generation
Friday, August 21, 2009
Using ELMAH with ASP.NET MVC
link
Insert following part after configSections after third steps
<elmah>
<security allowRemoteAccess="yes" />
<errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="~/App_Data" />
<errorMail
from="aaa@aaa.aa"
to="aaa@aaa.aa"
subject="ICM Exception ..."
async="true"
smtpPort="25"
smtpServer="0.0.0.0"
userName=""
password="" />
</elmah>
Insert following part after configSections after third steps
<elmah>
<security allowRemoteAccess="yes" />
<errorLog type="Elmah.XmlFileErrorLog, Elmah" logPath="~/App_Data" />
<errorMail
from="aaa@aaa.aa"
to="aaa@aaa.aa"
subject="ICM Exception ..."
async="true"
smtpPort="25"
smtpServer="0.0.0.0"
userName=""
password="" />
</elmah>
Wednesday, August 12, 2009
Subscribe to:
Posts (Atom)