Answer Posted / kinjal panchal
when you add dataset into dataAdupter like
dataset ds=new dataset();
dataAdupter da=new dataAdupter();
da.fill(ds);
then create one stringwriter
system.io.strinwriter sw=new system.io.stringwriter();
your dataset write into this stringwriter
ds.writeXML(sw);
viewstate["ds"]=sw.tostring();
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
What is the difference between asp.net and mvc?
What is the life-span of the items in the viewstate?
What are validator? Name the validation controls in asp.net? How do you disable them? Will the asp.net validators run in server side or client side? How do you do client-side validation in .net? How to disable validator control by client side javascript?
In which event of the page viewstate is available?
Is asp.net is a programming language?
Explain the components of web form in asp.net
What is a postback url?
What is session id in web application?
What is difference between web config and global asax?
Explain asp.net mvc request life cycle? : asp.net mvc
What is a runtime version?
If iam developing an application that must accomodate multiple security levels though secure login and my asp.net web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?
Can you use Web API with ASP.NET Web Form?
How can we identify that the Page is Post Back?
If you want to write your own dot net language, what steps you will you take care?