The question is: From where are you sending this request if not an ASPX page ? If so, then your client already has a web browser open. The Response.Redirect will just tell the client that the object has moved and the browser will then request that redirect URL.
On Jul 28, 12:51 am, RGF <[email protected]> wrote: > 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... > > <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
