What I thought was a simple task, we'll, it turned out to be not quite so simple...
I like to send the following HTTP string to my web server, which then gets inserted to my DB: http://www.my_personal.com/Myservice.asmx/GetCampaingData?StartDate=7-7-2011&EndDate=7-8-2011&StartTime=800&EndTime=1300&SendEmails=False&EmailAdresses=&SendPhoneCalls=True&SendTextMsg=False&TelephoneNumbers=7773334444&User= <myuseraccount>&WebKey=<myMey>&Title=Web test&Message=This is a test &Confirmation=No I send the above string using Response.Redirect and everything works!! But I need not to open the web browser, a behavior inherited when using Response.Redirect. Is there a way I can send the above URL without opening a web browser? or using Response.Redirect while suppressing the browser? Thank you, -r Note: I am using VS2005 and VB.Net
