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?

Answer Posted / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the server of asp.net?

1133


Explain the difference between asp.net mvc and asp.net webforms

1101


What are user controls?

1058


How does asp.net page work?

1024


What are session state modes?

1046


Explain the features that make asp.net more used framework? : asp.net mvc

988


Differentiate between file-based dependency and key-based dependency.

982


What are the benefits of view state?

996


What is full form of asp.net?

1060


What are the main differences between asp and asp.net?

1102


What are the three parts of an http response?

1023


Which is better php or asp.net?

997


Why web api is better than wcf?

1149


What is cas?

1095


What methods are fired during the page load? Init()

1020