Blog Detail
ASP.Net C# Professional
http://24x7aspnet.blogspot.com/
I realized that one of the biggest problems for novices is, the lack of knowledge in the learning progress so this blog have huge amount of ASP.NET material to help programmer to perform better in his/her Programming and Coding skill.
Recent Posts
Literal Control in ASP.Net C# ASPX
The Literal control is similar to the Label control. You can use the Literal control to display text or HTML content in a browser. However, unlike the Label control, the Literal control does not render its content inside of a <span> tag.<%@ ...
Page.IsPostBack Property in ASP.Net ASPX
The Page class includes a property called the IsPostBack property, which you can use to detect whether the page has already been posted back to the server.Because of View State, when you initialize a control property, you do not want to initialize th...
AutoSuggestBox in ASP.Net ASPX
AutoSuggestBox is a custom control written in C# that makes it simple to add 'Google Suggest'-like functionality to your web applications. It supports C# and VB.NET and works in Internet Explorer as well as in Firefox. This control utilizes AJAX to r...
Protecting View State in ASP.Net
By default ASP.NET uses autogenerated keys for view state validation and encryption. Validation and decryption happen separately and therefore two different keys are employed. Both keys reside in each server's SLA. What happens if your web applicatio...
View State ASP.NET State Management
Enable View State?You may do so on the machine, application, page and control level. First, you must have a server side form (<form runat="server">). By default view state is enabled. A quick peek into machine.config :<pages enableViewState=...
ASP.Net Handling Errors In An HttpModule
HTTP modules are an integral part of the ASP.NET pipeline model. Suffice it to say that they act as content filters. An HTTP module class implements the IHttpModule interface . With the help of HttpModules you can pre- and post-process a request and ...


Nice blog
Posted: May 9th, 2009 | Report This Comment