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.
 
You would have to expose the function via Web Service or Remoting.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
http://www.takempis.com
Big things are made up of
lots of little things.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top