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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What does asp in asp.net stand for?

1023


Why mvc is better than asp.net? : Asp.Net MVC

1004


How to make paging concepts in datagrid in ASP.NET?

1069


Define caching.

1094


Which object encapsulates state or data of a user?

1106


where can i gather the materials for MCP certification

5392


What is use of <% %> in asp.net?

1056


How can you ensure a permanent cookie?

1053


What are the new features added from ASP to ASP.NET?

1155


What are navigation controls? How many navigation controls are there in ASP.NET 4.0?

995


We are using Jscriopt validations and at clint site javascript is not running that time validation would work? if yes then how it would behave?

1966


How do u deploy your asp.net application?

1095


What is windows active directory authentication?

1102


What are session state modes?

1042


Explain why it is useful to use mvc instead of webforms? : asp.net mvc

1099