User Profile
Collapse
-
If you already have the HTML then use the filesystem to create a text file. -
Yeah, they're doing exactly what I am doing. I really don't understand why mine isn't workingLeave a comment:
-
When the page is displayed in the browser it is HTML. Can you just copy the source?Leave a comment:
-
You can't just submit data to another site and expect them to handle it automatically. You either need access to the site in order to write the appropriate handler or they need to provide you with interface information.
Do you know the people that own the site? Do they know you are trying to submit form data to it?Leave a comment:
-
I've never had that problem before. Have you tried splitting the string?Leave a comment:
-
-
Binding XML to a DataSet
If I load the following XML into a dataset, what should the dataset look like?
I've loaded the XML into a dataset and then bound the dataset to a gridview, but the only thing the grid view displays is:
"0 3B4E164D6DBD4B3 283AE1BA80169A4 5D"
-------------------------------------------------------------------------
<Response SessionId="3B4E 164D6DBD4B3283A E1BA80169A45D" xmlns="http://schemas.tmareso urces.com/timssws60.xsd">... -
I am binding directly to the dataset. Here's the code:
oDataSet = New DataSet
oDataSet.ReadXm l(sXMLMembersFi le)
gvMembers.DataS ource = oDataSet
gvMembers.DataB ind()
Here's the HTML of the gridview:
<asp:GridView ID="gvMembers" runat="server">
</asp:GridView>Leave a comment:
-
That has very little to do with what I am trying to accomplish. Thanks anyway.Leave a comment:
-
Thank you for your response. That's a little ambiguous however. Could you elaborate please?
Thank youLeave a comment:
-
Problem Loading XML into dataset and binding to gridview
This is a 2 part question:
Part 1:
I am accesing a web service that returns an xml string of user information. I am attempting to load the XML into an XMLDocument, save the document, load it into a dataset, and bind the dataset to a gridview.
I'm not sure if it's neccesary to save the XML file to disk, but I wanted to make sure it was well formed. It is.
No exceptions are caught during the loading...
No activity results to display
Show More
Leave a comment: