Can you store dataset in viewstate?

Answers were Sorted based on User's Feedback



Can you store dataset in viewstate?..

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

Can you store dataset in viewstate?..

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

Can you store dataset in viewstate?..

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

Can you store dataset in viewstate?..

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

Can you store dataset in viewstate?..

Answer / chinmoy

Yes, you can store any serializable data in viewstate.

Is This Answer Correct ?    3 Yes 2 No

Can you store dataset in viewstate?..

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

Can you store dataset in viewstate?..

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

Post New Answer

More ASP.NET Interview Questions

how can i deploy a asp.net webapplication.in a company so that all employees may access application on their different computers and share a single database. plz tell me the steps to do it..thanks.

1 Answers  


Why and where this web.config file is used?

0 Answers   Amazon,


What are three ways that you can use a compare validator?

1 Answers  


can i call the java script to code behind file?if yes how?

4 Answers   Wipro,


Are there any resources for drop-in replacements for the default css that comes with the ASP.NET Website template?

0 Answers   MCN Solutions,






How to unit test Web API?

0 Answers  


what is the Difference between Dim Object as object AND dim obj as myform?

1 Answers   Microsoft,


what are the new server controls added in Asp.net 2.0?

1 Answers   DOSPL,


what are the levels of securities need to be considered for the finincial web application?

1 Answers  


Whats MSIL, and why should my developers need an appreciation of it if at all?

3 Answers   Siebel,


what is view stat how it is use ?

2 Answers   Amazon,


What are the validation controls available in ASP.NET?

0 Answers  


Categories