Answer Posted / rajamurugesh
//Create new dataset :
DataSet ds = new DataSet();
//Store the dataset directly into view state
ViewState["dsn"]=ds;
//retrieve the dataset where it required
GridView1.DataSource = (DataSet)ViewState["dsn"];
| Is This Answer Correct ? | 44 Yes | 7 No |
Post New Answer View All Answers
How does the service stream content?
What is side-by-side execution? Can two applications, one using a private assembly and other using a shared assembly, be stated as side-by-side executables?
Who is using asp.net?
What is active web pages?
How can we create custom controls in asp net?
What is the maximum number of classes that can be contained in one dll file?
What r the asp.net list controls and diff. Between them?
What are the types of caching in asp.net?
What is masterpage?
How does session authentication work?
Explain global assembly cache.
Explain the difference between dataset and datareader.
How can you apply a theme to your asp.net application?
How to make sure that contents of an updatepanel update only when a partial postback takes place (and not on a full postback)?
What is asp net application object?