Contents tagged with ASP.NET Tips Tricks
-
Do More With Less using .NET 2.0 series
Dear all,
-
WEB farm - Load Balancing in Asp.net
The concept behind the web farm is that a number of different web sites share pooled resources. They typically share a common front-end dispatcher to perform load control and distribute customer requests. They share the multiple web servers themselves.
-
Response.Redirect in a new window?
Many people have asked if they can use Response.Redirect to redirect in a new window, but unfortunately you can't do so because Response.Redirect method execute on the server-sideA0 and opening a new browser window is mainly a client side execution.
-
[Resolving] Error connecting to undo manager of source file
-
[Resolving] Maximum request length exceeded exception
You will get such an exception if you are trying to upload large files or making a requestA0 which exceeded 4MB.
-
Resolving 'Error Creating Control -xxx' in Web Application Project.
If you face this error while trying to open a web application project
-
Resolve System.Configuration.ConfigurationSettings warning
If you have been migrated from ASP.NET 1.1 to ASP.NET 2.0 and still using the System.Configuration.ConfigurationSettings.AppSettings to get the application stored configurations ,you may face this warning
System.Configuration.ConfigurationSettings.AppSettings' is obsolete: 'This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.AppSettings'