Dotnet framework on iis server
Is it require to install dotnet framework on iis server?
What is the main role of view state?
What is the main purpose of view sate.. Like we can maintain value by session and etc but still we used view state why..???
View state is used to maintain the state of server controls during page postbacks.
Viewstate is a Page label hidden variable which is used to maintain state of the control between postback. The values will be lost as soon as you move to new page. It is a client side state management...
How is session dumped in asp .Net?
Answered by: yogeshlcse
View all answers by yogeshlcse
Member Since Jul-2009 | Answered On : Feb 17th, 2010
Session.Abandon()
Session.Abandon()
Session.Abandon()
If your are running ASP.NET application. Make sure ASP.NET handlers/extensions are registered in IIS Handler Mapping section.
Yes