How to port a windows form project to ASP.NET

G

Guest

I have a quite simple windows form project. It uses one standard form, a
couple of simple controls including the tree control, and ADO.NET.
Is there a simple automated way to port, or at least try, the project to a
web forms project?
Thank you
Cezar Mart
 
K

Karl Seguin

Nope....

WebForms and WinForms use totally different controls and even programming
mechanisms....

Karl
 
D

Derek Harmon

Cezar said:
I have a quite simple windows form project. It uses one standard form, a
couple of simple controls including the tree control, and ADO.NET.
Is there a simple automated way to port, or at least try, the project to a
web forms project?

For many simple WinForms controls you should be able to find a ready
equivalent. However, there is no tree control in ASP.NET 1.x, so that'll
probably put a damper on your plans. Try checking out third-party tools
if your user interface needs a tree view.

The good news is most of your code you've written to manage your data
in ADO.NET will move right over, but dealing with state management and
the request/response nature of WebForms are probably going to be a bit
of a shock, at least initially.

No, there's really no automated way to por, owing to some of the major
differences that underpin each platform (Win vs. Web). If you need an
architecture that targets Win and Web clients equally, then you might want
to write your user interface to be more data-driven (i.e., get all control
placement and parameter settings out of the database and dynamically
add the appropriate control type to the form/page).


Derek Harmon
 
P

Peter Rilling

Microsoft of have a Webcontrol set that contains a tree control. This can
be downloaded from their site. Just FYI.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,756
Messages
2,569,533
Members
45,007
Latest member
OrderFitnessKetoCapsules

Latest Threads

Top