Ask a Question related to ASP.NET Web Services, Design and Development.
-
VK #1
Reading DATA
Folks:
I have a dataset returned by web service, how I go about reading this
information? I don't want to bind this information to a datagrid but
more like read it and display on the website.
Thanks.
Vani
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
VK Guest
-
Problem with Data Grid reading dynamic data
I have created a website that uses datagrids to read data from an asp page. It works great, and fills the datagrid perfectly but it does not work... -
reading in XML data
I have written the following code to access data stored in an XML file . . . //load the required data from the VoucherNumbers XML file var... -
Problem reading layer data error? Composite data instead? WTF
There are some situations where as a PS 6 document is seen as having problems in a PS 7 and PS8 version of Photoshop. There is also a chance, because... -
Help req. Reading data from MySQL db with PHP
I have PHP code (below) which reads data from a MySQL format database. The problem I am having is trying to find out when the last ID entry was... -
reading data from /dev/lp0 error
Johan den Boer wrote: You'll probably need details on how your specific printer likes to talk to the computer. It might be worth checking the... -
SdRom #2
Re: Reading DATA
DataSet dsFromWebService = service.GetData();// receive dataset
foreach ( DataRow dr in dsFromWebService.Table[0].Rows) // iterate throgh
first table
{
Response.Write ( dr[0].ToString()+"<br>");//dump first attribute , here
you probably modify to render smth usefull
}
"VK" <vk@vk.com> wrote in message
news:u81H0f0dFHA.2180@TK2MSFTNGP12.phx.gbl...> Folks:
>
> I have a dataset returned by web service, how I go about reading this
> information? I don't want to bind this information to a datagrid but
> more like read it and display on the website.
>
> Thanks.
> Vani
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
SdRom Guest



Reply With Quote

