to process web request from c#.net/vb.net windows application we have webrequest class. import system.net,system.io name spaces for requesting and processing the result here is the example code 1. create a uri with the required url uri wsn=new uri(\”http://www.ittreats.com\”); 2.next create a webrequest class and pass the above uri object to it webrequest .. .. ..
