Friday, 2 December 2011

ASP.NET 3.5

ASP.NET Features
The key features of asp.net when compared to previous framework are
memership and role management.
We can easily authenticate user in our portal with the followinc code.
if (Membership.ValidateUser (Username.Text, Password.Text)) {
// Allow access code here
}
We can use website administration tool also.
Personalisation
With a personalisation API, the user can easily customise the portal.
Site Navigation
With treeview,sitemappath server controls.
HealthMonitoring
We can specify healthmonitoring tag in config file to get the event errors and login errors.As the name implies it helps to check the health of the portal.
Reading and Writing web.config file
Using webconfigurationmanager class.
Have a variety of datasource
sqldatasource,objectdatasource,xmldatasource,accessdatasource,linqdatasource etc.
Cross Page Posting
We can submit a page to another page and can have all the control values in the 2nd page.