Converting ASP VB .NET Web Application to VB .NET Executable Question

J

jm

I have created several VB .NET web applications and will soon have to
start building "real" executables. This may be involved, but how much
conversion is in a path like this? Is it simply recreating the GUI,
give the GUI controls the same name as in the web app and place the
code in different events than the ASP .NET page?

For example, I have an ASP.NET VB.NET web page, uses a database, etc.
The datagrid control, some textboxes, all that. There are events and
code in those events.

I need to take that page and turn it into an executable. Is this
huge, or is this more manageable because of the .NET platform?

Thank you.
 
J

Jan Tielens

Well it all depends on how your "old" applications are designed. If you have
a nice 3-tier layered application with a service interfaces layer for
example, you will only have to rebuild the GUI layer. But if you don't have
a layered application (e.g. opening connections and executing sql from a
webform) then you'll have to rewrite a lot more.
 

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

Top