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…
State Management in Visual Studio ASP.Net What is ViewState?ViewState allows the state of objects (serializable) to be stored in a hidden field on the page. ViewState is transported to the client and back to the server,…
ASP.Net Session Web is Stateless, means a new instance of the web page class is re-created each time the page is posted to the server. As we all know HTTP is a stateless protocol, it can't hold…
Common Life-cycle Events in ASP.Net ASP.Net Page Event and its Typical UsePreInit:Use this event for the following:• Check the IsPostBack property to determine whether this is the first time the page is being…
Loading Master Pages Dynamically in ASP.Net Associate different Master Pages dynamically with a content page.In your website you can enable the users to customize the appearance of the website by loading different Master…
What is JQuery and it's advantages in ASP.Net JQuery is a light weight JavaScript library which provides fast and easy way of HTML DOM traversing and manipulation, its event handling, its client side animations, etc. One of…