I want to read the DataSet which having mulitple DataTables from javascript so that i can use Ajax. Thanks in advance
reading DataSet in javascript
Collapse
X
-
Tags: None
-
Can you explain why you want operate Dataset using javascript ?
Do you want ot display Dataset Information in tabular format ? -
JavaScript runs in the browser. DataSet's are .NET objects that run on the server. Therefore, you cannot access a DataSet in JavaScript.
You can post back to the server to query the DataSet for information using AJAX. Ajax stands for: Asynchronous JavaScript and XML. It lets you make asynchronous calls to the server to retrieve information. This means that your JavaScript can make a call to the server asking it for information from the DataSet without causing a full page post back.
-FrinnyComment
-
Can you pls help me out of using Dataset with Ajax(some examples related to dataset usage with Ajax)Comment
-
You need to provide us with more information about what you're trying to do so that we can help you.
A DataSet is a control that contains a bunch of DataTables. DataTables contain a bunch of fields.
What are you trying to do with the DataSet?
How are you planning on displaying this information?
What do you think JavaScript/Ajax is going to do in your soultion?
-FrinnyComment
Comment