Convert a vb windows project to a web site

MJV

New member
Joined
Jan 12, 2009
Messages
1
Programming Experience
Beginner
I'm very green in programming by i have created a program for quoting in ms visual studio as a windows program in vb. How can I convert this to a web program to be used in a website.

Thanks in advance
 
if you recreate your interface in a webform, you can copy all your code behind from your application to the code section, relink the functions to the new components names (textboxes, labels etc) then just check it builds, it should be prety straight forward, once its running using full postbacks , you can experiment with update panels and javascript functions to speed the app up.

obviously the simpler your bas app is, the easier it is to transfer.
 
Back
Top