|
 |
aspx thread: ADO.NET & ASP.NET
Message #1 by "Kaveri Infosys" <kisisitech@y...> on Sat, 5 May 2001 08:58:49
|
|
We are much aware that the main advantage of ADO.NET is Disconnected
Dataset. That means Data store is tranferred from Database to Client
side.If so , How can we make use of Dataset from the client side, whithout
hitting the server. That is without Posting the Pages. Since if place any
button from Server side controls, Defaultly, It is Summit Button. How can
we acheiv this?
I will write one more instance. Suppose I am placing a List Box from
the Server Side controls.I am loading this list box from the dataset
while loading the Page.If we select any one value from List Box, Based on
the selected value,Other list box should be loaded from the same data set.
How can I acheive this. Can you hrlp us?
Thanks
Vijay
Message #2 by "Alex Homer" <alex@b...> on Tue, 29 May 2001 15:49:22
|
|
If the client has the .NET frameworks installed, then you would run code
on the client to manipulate the data instead of posting the page back to
the server. The release version of .NET will include a redistributable
that can be used to install the frameworks, and it's expected to be quite
small (compared to the current setup file).
The only other possiblilty is to send the data from the DataSet in a
format such as XML (which the DataSet can export easily) and use some
other type of application on the client such as an XML parser.
|
|
 |