reading DataSet in javascript

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kirankumarn
    New Member
    • Jun 2009
    • 31

    reading DataSet in javascript

    I want to read the DataSet which having mulitple DataTables from javascript so that i can use Ajax. Thanks in advance
  • kunal pawar
    Contributor
    • Oct 2007
    • 297

    #2
    Can you explain why you want operate Dataset using javascript ?
    Do you want ot display Dataset Information in tabular format ?

    Comment

    • Frinavale
      Recognized Expert Expert
      • Oct 2006
      • 9749

      #3
      Originally posted by kirankumarn
      I want to read the DataSet which having mulitple DataTables from javascript so that i can use Ajax. Thanks in advance
      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.

      -Frinny

      Comment

      • kirankumarn
        New Member
        • Jun 2009
        • 31

        #4
        Can you pls help me out of using Dataset with Ajax(some examples related to dataset usage with Ajax)

        Comment

        • Frinavale
          Recognized Expert Expert
          • Oct 2006
          • 9749

          #5
          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?

          -Frinny

          Comment

          Working...