K
K Viltersten
I have a site that i can request directly
from my browser's URL field by typing:
http://localhost/Search.aspx?qwert
and i wonder how i could obtain the very
same text that is rendered into the area
of my browser but assign it to a string
variable.
The pseudocode for it as follows.
string url = http://localhost/Search.aspx;
Connection c = new Connection (url);
c.Request();
string xml = c.GetXmlContentsString();
I've been googling but haven't had luck
so i guess it's something awfully basic
and simple.
Konrad Viltersten
from my browser's URL field by typing:
http://localhost/Search.aspx?qwert
and i wonder how i could obtain the very
same text that is rendered into the area
of my browser but assign it to a string
variable.
The pseudocode for it as follows.
string url = http://localhost/Search.aspx;
Connection c = new Connection (url);
c.Request();
string xml = c.GetXmlContentsString();
I've been googling but haven't had luck
so i guess it's something awfully basic
and simple.
Konrad Viltersten