Click here to Skip to main content
15,895,840 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
hello
i have a windows application project in vb.net 2005.i want to convert it into web project in asp.net. how can do it?
can any help me?
Posted

As both are totally different in terms of design for example windows controls come out of the System.Forms namespace and web controls come out of the System.Web namespace. Yes, you can share logic between windows and web but no tool is available for conversion.

Hence you need to first learn the asp.net and write the code from scratch to convert the winform application to web application.

hope it helps :)
 
Share this answer
 
Probably with extreme difficulty.

The problem is that it not just a simple change in user interface - it's a whole shift from a user centric local application to a client server environment, where the user and the application, and its data are on completely different machines.

If you are lucky, and the application was written in a solid, three tier approach with a cleanly defined Business Layer and a well separated Presentation Layer you might be able to do it. But even then, you are probably going to have to learn some javascript as well as the intricacies of HTML and how it is executed on the various different browsers.

We can't just say "do this" and it's done - this is generally a complete re-write, pretty much from scratch, unless you are very, very lucky indeed. Sorry!
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900