![]() Related Questions 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 : There is the ability to use both server side and client side code with in the code behind. Generally though the code behind is server side code. This code acts on Events that are fired that are not handled by the client side script.(JavaScript,vbscript, ... Latest Answer : EnableViewState is enable is a property on controls that allows that control to save to the hidden _viewstate. the control itself holds it value in the controls ViewState property, if EnableViewState is set to true. You store the ... Latest Answer : AppDomain.CurrentDomain.BaseDirectory ... Latest Answer : sqlcmd.commandtype=storedprocedure;......;......;Add parameters.......;sqlcmd.ExecuteNonQuery(); ... Latest Answer : User control create for GUI purpose and it is form of .ascx and in aspx page you need to specify the src (Path) of the control.Custom control is form of compiled form (assembly). For using this control you need to add referenct in your project. In ... 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 : try { SqlParameter p0, p1, p2; cmd = new SqlCommand(); cmd.CommandType = CommandType.StoredProcedure; cmd.CommandText = "spo_sample"; //Param: Return Value p0 = cmd.Parameters.Add("@RowCount", SqlDbType.Int); p0.Direction ... Latest Answer : Differneces between Single Call & Singleton.Single Call objects service one and only one request coming in. Single Callobjects are useful in scenarios where the objects are required to do afinite amount of work. Single Call objects are usually not required ... Latest Answer : Classic ASP uses inline code. HTML and asp code are embedded in the same file. (.asp)One of the enhancements in ASP.NET framework is seperation of HTML code (UI) and the code behind that web page (.cs file). This is easier to maintain and ...
Sponsored Links
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||