Can you store dataset in viewstate?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / shashikesh mishra
yes.We can store dataset in view state.Not a dataset any
serialible object type(datatable,dataset etc..) to be store
in view state.
| Is This Answer Correct ? | 23 Yes | 5 No |
Answer / lalit pradhan
//Create new dataset :
DataSet ds = new DataSet();
//Store the dataset directly into view state
ViewState["dsn"]=ds;
//retrieve the dataset where it required
DataSet ds = (DataSet)ViewState["dsn"];
GridView1.DataSource = ds.Tables[0];
GridView1.DataBind();
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / masthan
yes,you can store dataset into viewstate directly.
dataset ds=new dataset();
viewstate["newds"]=ds;
datagrid1.dataspurce=(dataset)viewstatw["newds"];
datagrid.databind();
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / chinmoy
Yes, you can store any serializable data in viewstate.
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / venkat
//create datatable
datatable dt = new datatable();
//Create new dataset :
DataSet ds = new DataSet();
ds.table.add(dt);
//Store the dataset directly into view state
ViewState["dsn"]=ds.table[0];
//retrieve the dataset where it required
DataSet ds = (DataSet)ViewState["dsn"];
GridView1.DataSource = ds.Tables[0];
GridView1.DataBind();
| Is This Answer Correct ? | 1 Yes | 3 No |
Answer / mansing patil
No, You cant directly store Dataset in ViewState. You can
get XML from dataset store that Xml in ViewState. While
getting From ViewState convert to xml and then from xml to
dataset
| Is This Answer Correct ? | 9 Yes | 22 No |
What’s the difference between asp.net web forms and asp.net mvc?
Define dll hell?
What is masterpage?
How many rounds are there for a software programmer to clear interview in any IT industries(MNC).
Explain the disadvantages of viewstate?
if i want to give an alert message like "try after sometime" to a web page which is being seen by other person.if a web page is not seen by anyone then it should display otherwise it show a display a message stating that other person is viewing so try after some time........how can i implement this.
Explain the difference between panel and groupbox classes using .net?
One of the properties of the Web Part has an incorrect format. Windows SharePoint Services cannot deserialize the Web Part. Check the format of the properties and try again. - this error is occured in Sharepoint 2007 while deploy the web part
suppose i am Admin in my application and i have to terminate the session of the particular user in my application.........how can i do it....?????
What is the Custom Error in ASP.NET?
2 Answers ABB, IBM, Infosys, Tech Mahindra,
What are the server control tags in asp.net.?
What are main return types supported in Web API?
Visual Basic (800)
C Sharp (3816)
ASP.NET (3180)
VB.NET (461)
COM+ (79)
ADO.NET (717)
IIS (369)
MTS (11)
Crystal Reports (81)
BizTalk (89)
Dot Net (2435)
Exchange Server (362)
SharePoint (720)
WCF (340)
MS Office Microsoft (6963)
LINQ Language-Integrated Query (317)
WPF (371)
TypeScript (144)
Microsoft Related AllOther (311)