What are the major differences between asp.net1.1 and
asp.net 2.0?
Answer Posted / sabari_bec
Benefits of ASP.NET 2.0 include:
1) A wide array of new controls, such as GridView control,
MultiView, Wizard and FileUpload.
2) Superior separation of design and content, enabling
developers and Web designers to work together.
3) A new model for compiling and distributing applications.
4) Customization with Web Parts.
Bug in ASP.NET 2.0:-
If you have a control on a page that is marked Read-Only
and EnableViewState is set to false on the Page, the
ReadOnly value will no longer post back in ASP.NET 2.0 -
the value gets lost. This even though the value is actually
returned in the POST buffer.
This behavior is also different than 1.1 which (correctly I
say) posted back the READONLY value.
| Is This Answer Correct ? | 10 Yes | 4 No |
Post New Answer View All Answers
What is difference between asp.net and asp?
What are the events that happen when a client requests an asp.net page from iis server?
What are the major built-in objects in ASP.NET?
What is ipostback?
List some of the important session state modes of asp.net.
What are the server controls in asp.net?
How much is the pay-for-use service if I chose not to use microsoft-sponsored advertising?
What are standard controls?
How many types of triggers are there in update panel?
What is web router?
What is difference between view and partial view?
Explain method to handle error using HttpError in Web API?
Hello, Using Visual Studio 2005 (VB) I am working to create a Web Site implementing the following: Within a gridView I have placed a dropdownlist control with a DataSourceID="SDSLkupList". SDSLkupList is a sqlDataSource used to store a lookup list for dropdownlist translation from ID to text. SDSLkupList contains the translation text and other fields related to the dropdown selection ID. (Thought it would be efficient to get everything at the same time.) I would like to provide the user the ability to select from the dropdownlist and, based on the selection, use labels to list related columns stored on the SDSLkupList in separate gridView columns. I have read that SqlDataSources are not meant to be used for individual controls. Since SDSLkupList contains all related information, is there a way to do a find using the dropdownlist selectedValue? (I was not able to discover one.) Otherwise, what should I use? It would need to set the labels on the gridView DataRowBound event as well as the SelectedIndexChanged events. Has anyone done this? Any help would be appreciated. Thanks in Advance. Neal
Define cookie.
What is a server cookie?