tags:

views:

100

answers:

3

I need to convert my winform VB.NET application to an ASP.NET application.
My current application has 4 forms, it reads a remote XML file, and uses a datagrid to collect user input and to create a report.
It is a very simple application, and I would like to know where to start to convert it to ASP.NET.

+1  A: 

It's as simple as start a new web project and create the current forms as WinForms. There is no magic tool that I am aware of that does this conversion.

You'll need a server to host the web application on as well.

Unless I am missing something, sounds very simple.

Cody C
er, that would be WebForms for a browser-based solution, no?
chris
yes wouldnt it be webforms?
I__
Definitely a typo. WebForms is what he meant.
Jimmie R. Houts
typo...sorry. I meant WebForms :)
Cody C
+1  A: 

It won't take very much by all accounts.

No one is going to be able to give you a "just do this" solution to your problem.

What you need to do is work through a couple of simple Web Forms examples and you'll soon see the similarities and be able to migrate the code.

Greg B
can you recommend some web form examples?
I__
hey greg can u recommend some nice examples?
I__
+1  A: 

Should be fairly straightforward to port the functionality.

You should start by checking out the tutorials at the asp.net website.

Jimmie R. Houts