tags:

views:

48

answers:

2

i designed a very simple vb.net application. i would like to my users to be able to access it through a website instead of locally. is this posible? how do i do it? does the webserver have to have special extensions? do i have to convert the program into a different format?

A: 

Is this a web application or a windows application?

bechbd
windows application. i didnt know i can make a web app in vb.net? is asp.net the same thing as vb.net except for the web?
I__
+1  A: 

There are 3 basic type of applications in .NET:

  1. Console application
  2. Windows Forms Application
  3. ASP.NET application

If you want to run your application from a web server you need to create an ASP.NET application. The web server needs to have .NET installed and a virtual directory setup for your application.

Darin Dimitrov
thakn you very much. what is the difference between console and winodws forms app?
I__
Windows applications have user controls like buttons, text boxes, combo boxes, menus, etc... and use standard windows events to handle user actions while console applications can only take user input and output from/to the Console, command or a shell window.
Darin Dimitrov
darin - i've never used asp.net. is it sort of like vb.net?
I__
@alex, VB.NET is a programming language, while ASP.NET is a web application written in one of the many CLS compliant languages. I would suggest you reading some introductory tutorial that could help you clarify the basics.
Darin Dimitrov