What is the difference between User Controls and Master Pages
Answer Posted / jay
just a not :
this can be a tricky question depending on the interviewer.
Masterpage IS a UserControl, and you can easily check this
either by exploring classes to which websites are being
compiled or simply noting :
public class MasterPage : UserControl
semanticaly, use of classical UserControl and Masterpage is
of course different, but this already has been elaborated in
other answers
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
How is a session stored and maintained in asp.net?
Explain some of the major built-in objects in asp.net
Explain diff. Between friend and protected friend?
Define data caching?
What is the use of view state?
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
How do session tokens work?
What is the size of Get method and how much data it can store?
Which asp.net objects encapsulate the state of the client and the browser?
1.how to encrpt query string in asp.net? 2.there are 10000 records then i wnat display 5000 records one gridview and 5000 records another grid view what is the process?
What is viewstate in asp net with example?
Which is the parent class of the ASP.NET server control?
What is view state and how it works in asp net?
What is the difference between system.stringbuilder and system.string
What is caching in asp.net?