Why we need both server controls and html controls in asp.net. what is the difference between them?
What is AutoWiredUp=false in PAGE directive in ASP.NET? Microsoft documentation says default value for AutoWiredUp is TRUE, but in reality it is FALSE by default whenever we add new web page. What is it actually?
Latest Answer: I guess , i am not sure, by using dataviewsdatagrid.datasource = dataset.defaultView or datagrid.datasource = dataview ...
Latest Answer: Use RequiredFieldValidator control. Set its 'InitialValue' property to something like 'Select an item'.This control will ensure that the user has to change the value from InitialValue to another value.If InitialValue is not set the dropdown ...
Latest Answer: Always query data using Reader, views are good as long as the underlying data is static ! Ensure that the source tables have proper indexes for making the query efficients, use stored procedures for DAL ...
Latest Answer: This option is asked when you are
Add New Item - > Web Form - > Place Code In seperatefile
Codebehind
The code behind programming model adds another file to the webpage
that is called codebehind page . the codebehind page consist ...
Difference between DataList and Repeater?ans:Both are similar,except for a difference that Repeater datas can't be edited whereas datalist datas can be edited
Latest Answer: The 'Location' attribute of the @OutputCache element specifies the location where the cache should be created. Following are the options for saving ASP.Net cache:1. Any2. Client3. Server4. Downstream5. NoneThe session data location is controlled ...
Latest Answer: we use ISqlcommandBuilder interface to add, edit or delete any data in the original database.system.data.ISqlCommandBuilder commandbuilder= new SqlCommandBuilder("dataAdapter"); ...
How a grid can be made editable int ASP.Net? How to Access a particular cell of Grid?What is the difference between datagrid and datalist?
View page << Previous 7 8 9 10 [11] 12 13 14 15 16 Next >>

Go Top