Server handling of HTTP Get

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

New to .Net but not VB. If someone could point me in the general direction of where to look. Need to develop an application running on a server that can accept a HTTP Get, create a text file dynamically, and return the text file via HTTP. Do I need to be using HttpWebRequest and HttpWebResponse? Does anyone know of any samples showing this? Thanks.
 
Tom_B said:
New to .Net but not VB. If someone could point me in the general
direction of where to look. Need to develop an application running
on a server that can accept a HTTP Get, create a text file
dynamically, and return the text file via HTTP. Do I need to be
using HttpWebRequest and HttpWebResponse? Does anyone know of any
samples showing this? Thanks.

No, these classes are used on the client-side. What you want to do is
implement a HttpHandler or use just a simple ASP.NET page.

Cheers,
 
Back
Top