How to call ASP page from C# application?

  • Thread starter Thread starter Julia
  • Start date Start date
J

Julia

I am looking for something similar to Microsoft.XMLHTTP in .NET
I am just need to synchronously call an ASP page,pass it some parametrs and
accept true or false string as a response


Thanks
 
I am looking for something similar to Microsoft.XMLHTTP in .NET
I am just need to synchronously call an ASP page,pass it some parametrs and
accept true or false string as a response


Thanks

You may want to check out HttpWebRequest and HttpWebResponse.
 
On Mon, 28 Mar 2005 14:18:47 +0200, Julia wrote:

Hi Julia
I am looking for something similar to Microsoft.XMLHTTP in .NET
I am just need to synchronously call an ASP page,pass it some parametrs and
accept true or false string as a response

Thanks

I'm really not sure what's the solution. I did that a year ago but don't
have access to the source code anymore. But have a look at the
HTTPRequest/HTTPWebRequest classes. I think I used these classes to do
that.
 
Hi,

You can use WebRequest , or more exactly HttpWebRequest .

Also did you considered using web services for this escenario ?

cheers,
 
Back
Top