Function call

  • Thread starter Thread starter Ric
  • Start date Start date
R

Ric

Hi,

I need to call a function in my asp.net application from a
vb.net windows application running on the same machine.
Is this generally possible? How can this be realised?

Thanks

Ric
 
You could use a web service.
Or you could use the WebRequest object to call an ASPX page, passing it
parameters on the command line.
Better yet, you could Reference the ASP.NET assembly and call it directly.
 
Back
Top