CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Apr 2008
    Posts
    19

    representing dataset after receiving from webservice

    Hello all,

    In my webservice, in a webmethod named emData, I am extracting some data from a sql server database and arranging those data in a DataSet following some query. Now that DataSet is the return value of my webmethod emData. I am working with C#

    How can I show that dataset in my client aspx page in a normal table after receiving it from the webservice?
    Please help me to solve this out.


    with regards,
    Faysal

  2. #2
    Join Date
    Jun 2004
    Location
    Kashmir, India
    Posts
    6,808

    Re: representing dataset after receiving from webservice

    You could just use DataGrid (2003) or GridView (2005) to display data. Same thing goes for WinForms application.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured