N
nashak
Hello,
ASP.NET pages are disconnected html pages i.e once page is sent to the
browser, that is it.
Let's say that I have a datagrid on my page and I have used a dataset
to fill this grid only during the first visit to the page. My page
loads displaying the data in datagrid. What is the status of my
dataset? Is the dataset stored anywhere when the page got rendered (I
am not caching it)?
Now let's say that I use a button event to modify all the rows of the
datatable inside the dataset. Now since this is a postback, my dataset
is not created. So how does the dataadapter.update method work to
update the status of the rows of the table in a dataset?
I hope I've explained the problem clearly. If not, then please let me
know what information you need and I will try my best to provide it.
Thank you.
ASP.NET pages are disconnected html pages i.e once page is sent to the
browser, that is it.
Let's say that I have a datagrid on my page and I have used a dataset
to fill this grid only during the first visit to the page. My page
loads displaying the data in datagrid. What is the status of my
dataset? Is the dataset stored anywhere when the page got rendered (I
am not caching it)?
Now let's say that I use a button event to modify all the rows of the
datatable inside the dataset. Now since this is a postback, my dataset
is not created. So how does the dataadapter.update method work to
update the status of the rows of the table in a dataset?
I hope I've explained the problem clearly. If not, then please let me
know what information you need and I will try my best to provide it.
Thank you.