Read http body and put it into variables.
Posted
by Khou
on Stack Overflow
See other posts from Stack Overflow
or by Khou
Published on 2010-03-09T06:09:48Z
Indexed on
2010/03/09
6:21 UTC
Read the original article
Hit count: 288
how do you create a class to read the html body and phase it into a variable?
Example the page http://domain.com/page1.aspx
display the following plaintext within the html body content
item1=xyz&item2=abc&item3=jkl
how do you read content of the html body and assign them to a variables
in this case
variable1=xyz (value taken from item1=)
variable2=abc (value taken from item2=)
variable3=jkl (value taken from item3=)?
© Stack Overflow or respective owner