Click here to Skip to main content
15,887,267 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How we get opening balance and C/F field on the page end and B/F on the page start ?

Kindly send me link or code......
Posted

1 solution

woudl be something along these lines:

Dim vip As HttpWebRequest = CType(WebRequest.Create("http://website.com"), HttpWebRequest)
           vip.Method = "GET"
           Dim myResponse As WebResponse = vip.GetResponse()
           Dim sr As New StreamReader(myResponse.GetResponseStream(), System.Text.Encoding.UTF8)
           Dim result As String = sr.ReadToEnd()
 
Share this answer
 
v4

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900