can ASP.NET call project done in VB.NET?

ivan_april said:
i hv done a project in VB.NET.
can i do a program in ASP.NET to call the project?
Thanx 2 reply!


I know that you can call an ASP Web service from a windows application by declaring your interface methods in the web service as webmethods.

In relation to calling a vb.net project from an ASP.net, I wouldn't think so, as you need web references, and I can't see you being able to create a web reference to a windows application as they need a url. Although I could be wrong.

Mike55
 
Depends what you mean. There's nothing to stop you creating a class library in vb.net and accessing those classes in your asp.net app. Just add a reference to the project.

:)
 
Back
Top