Here below response send my windows application to my site
http://www.abcd.com/response.aspx?name=bala
response page i dnt want to load.
in which event i write code to get the parameter like ‘name’
in page load
dim str as string=request.querystring('name')
i get the name. but i dnt want to load that page.
all the response i want store any text file. it is possible with out load the page in asp.net?
If you don’t want to load the page, you could do a Response.Redirect to another page. Use Page_Init to handle this at a level above the Load event.