Calling Javascript Remote Web Site

  • Thread starter Thread starter Anbu
  • Start date Start date
A

Anbu

Hi,

I need to access a remote web site and authenticate my (web) application,
based on the remote application's authentication. The remote application is
writen using javascript and running on Linux system.

how can i access the page and then validate the result from ASP .NET 2003.

Thanks,
Anbu
 
You'll have to talk with the one who provide this service. This is generally
provided either as web service (referencing the web service will create a
proxy class) or by posting form fields to this page (System.Net.WebClient
allows to issue an HTTP request to an external page).
 
Back
Top