Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

Can One website be made using two different languages like c#,vb.net etc......

4 Answers   ABC,


What is a web server? What are the load limits in it?

0 Answers   Wipro,


How To Call Outside Javascript File? Example : Our Project File Folder Name "Sample" Another Folder Name "Check".Check Folder Is Out Side Of Our Project ?Check Folder Have Verify.Js File. My Question Is How To Call Verify.Js File.

3 Answers   Consagous, Phoenix Technologies,


What is WCF

4 Answers  


what is <location> tag?

2 Answers  


What does assemblyinfo.cs file consist of?

2 Answers   Accenture, HCL,


How you will handle session when deploying application in more than a server?

0 Answers  


What is web api and why to use it?

0 Answers  


Where is the view state data stored in asp net?

0 Answers  


Explain the asp.net session state modes.

0 Answers  


Explain in what order a destructors is called.

0 Answers  


What is asp.net mvc? : asp.net mvc

0 Answers  


Categories