|
|
-
|
|
When the below controls are rendered, automatically these will be wrapped up inside a table.
1. FormView
2. Login
3. ChangePassword
4. PasswordRecovery
5. Wizard
6. CreateUserWizard
If you don't want these control to be rendered inside a table, set th...
|
|
-
|
|
In ASP.NET 3.5, for listview control, its required to specify Layout template. In layout template, we will define the template style of the root control. This is an additional step as for gridview control, its not required to specify layout template.
...
|
|
-
|
|
Charts are very much useful to visually present the data. In Reporting applications these are very much useful to present huge amount of data.
Before ASP.NET 4.0, to show Chart control in web page, users often resorted to Microsoft OWC chart control or...
|
|
-
|
|
In ASP.NET 4.0, Menu control has been improved in few areas.
1. **Rendering Mode:** Before ASP.NET 4.0, Menu control is rendered in the form of a table. Its difficult to apply CSS styling to table as it has child tags like "tr","td" etc and also its no...
|
|
-
|
|
ASP.NET 4.0 proves few SEO improvements, which will be very useful to improve website search rank.
1. Adding MetaDescription,MetaKeywords to Page properties
2. Response.RedirectPermanent Method
**1. Adding MetaDescription,MetaKeywords to Page properti...
|
|
-
|
|
In general, to show the details of a customer, we will use the URL like below.
showCustomer.aspx?Name=Alex
Search Engines can't read the query string part and this will affects in page ranking. By using URL routing, we can change the URL like belo...
|
|