Latest Answer : Server-side code run at the server. It is a seprated file from html page.Client-side code is processd by browser and run at the client side ...
Latest Answer : It's upon you what you prefer, that can be done on both sides best practice says it should be done on both side just to be on the safer side, becuse there is some possibility that client side validation can be hacked(disabled) by some vulnerable scripts,so ...
Latest Answer : Dataset can represent an entire database in memory with full of tables,views and relations.Dataset is bulk loaded rather than loaded on demand.Dataset is designed to work without a continuing connection to the original datasource.There is no concept of ...
Latest Answer : There is no direct sorting provided by dataset or datatable.
Sorting and filtering facility is provided by dataview.
You can sort the data using DataView.
DataSet ds = new DataSet(); // assume that dataset has datatable name mytable.
DataTable ...
Latest Answer : Inheritance helps in the reusability of the code. The class from which another class is derived is called base class. Those methods of the base class can be overridden. The deried class can also implement the methids of the base class. C#.net does not ...
Latest Answer : A diffgram is a means of rendering and serializing changes in a DataSet. Another good use of a diffgram would be to package updates to SQL server tables as xml files, The SQLXMLCommand object can apply diffgrams to SQL Server ...
Latest Answer : Dataadapter1.Fill(ds) where ds is the dataset object name and fill() method is used to fill the dataset from the dataadapter ...
Latest Answer : Yep, Sure. In ItemdataBound event, you can play data as you wish. ...
Latest Answer : itemtemplate ...
What property must you set, and what method must you call in your code, in order to bind the data from some data source to the Repeater control?