Ask a Question related to ASP.NET General, Design and Development.
-
JH #1
Web enabled application development
I am trying to convert a GUI based windows application
developed in C++ into the same web enabled application.
My questions are:
1. .NET proveds VB and C# as default languages for web
application in ASP. Am I right?
2. What are the general steps involved in porting all the
work done in the GUI based application?
3. Can somebody suggest a faster and reliable way of
handling such tasks ?
I am really in need of an urgent help inorder to grasp
the overview of such webifying process.
Thanks
John
JH Guest
-
Application Development Advice
We have been using Flash for the last couple of years to develop small applications and presentations used for project reporting. Most of our... -
Application Development Issues with Browsers
Hey people, I'm in grave need of help. I just created an entire site using dreamweaver MX www.mpactaccess.com however, here are the issues... -
Web enabled v/s VBA application
I would like to enlist your expert knowledge to help me finding the pros and cons of web enabling I have an application developed in VBA sitting... -
Ebook application development
Would Macromedia Director be the best tool for an ebook application which contains text and multimedia content as well as complex searching... -
Development best practices and knowing when to exercise control over development
Hi Nuno, After analyzing your message, I found that most of it was purely theoretical. The actual issue you discussed was regarding how to... -
Kevin Spencer #2
Re: Web enabled application development
Hi John,
Actually, VB.Net and C# ship with Visual Studio.Net. There are, in fact,> 1. .NET proveds VB and C# as default languages for web
> application in ASP. Am I right?
quite a few languages now for .Net development Visual Studio.Net 2003, for
example, also ships with J#.
Not sure what you're asking here. It's not a matter of "porting" as you're> 2. What are the general steps involved in porting all the
> work done in the GUI based application?
not porting over an executable to a different platform. You're creating an
entirely different sort of application from your executable. A web
application is about as far from an executable as you can get. It uses HTML
for its' interface, and the interface and back-end are completely
disconnected from one another, to such an extent that you actually have to
rebuild all your server objects with each PostBack from the client. This is
due to the stateless nature of HTTP. In addition, there are quite a few
limitations imposed by the nature of HTML, the browser interface, and HTTP.
You may have to re-design your interface quite a bit.
What you really need to do is to analyze your executable, figure out how to
"map" (ore re-design) interface elements from it to the appropriate HTML,
and, depending upon the structure of the internals of your executable,
either re-write them in .Net, or possibly re-use them (you can use COM
interop, for example, to avoid having to rewrite any COM components of your
executable).
HTH,
Kevin Spencer
Microsoft FrontPage MVP
Internet Developer
[url]http://www.takempis.com[/url]
Big things are made up of
lots of Little things.
"JH" <yhcontact@yahoo.com> wrote in message
news:0ba101c33cb8$d11f14f0$a401280a@phx.gbl...>
> I am trying to convert a GUI based windows application
> developed in C++ into the same web enabled application.
> My questions are:
>
> 1. .NET proveds VB and C# as default languages for web
> application in ASP. Am I right?
>
> 2. What are the general steps involved in porting all the
> work done in the GUI based application?
>
> 3. Can somebody suggest a faster and reliable way of
> handling such tasks ?
>
> I am really in need of an urgent help inorder to grasp
> the overview of such webifying process.
> Thanks
> John
Kevin Spencer Guest
-
Martin Olson #3
Re: Web enabled application development
1. ("No Answer, a clarifying question") There is several languages for .Net
but can you use them in ASP.Net? Can I, as an example, write 'Control
language="cobol"' or Control Language="js (J#)"?
2. If you manage to get wrapped com+ to work, you shold move all logic from
the presentaion layer of your application to a layer of businesslogic. This
you should do in your GUI application an have it to work there. Future
changes you'll make, you will make in the businesslogic so they will then be
available in both the old GUI application and the new web application.
Changes involwing presentation must of course even be done in the clients.
If this wont work, to wrap your C++ code, then I should do it by convert the
C++ code to a CSharp, nTier solution and then still have the same
oppurtunities as above. Personally I do my new development as a nTier WinApp
with a NoLogic presentation layer and then I do a WebApp where I use the
same bussines layer as in my WinApp. It goes quicker and easier to debug and
to try the functionality in a WinApp than in aWebApp
Regards
Martin
"Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> schrieb im Newsbeitrag
news:uNa4M1LPDHA.2476@TK2MSFTNGP10.phx.gbl...HTML> Hi John,
>>> > 1. .NET proveds VB and C# as default languages for web
> > application in ASP. Am I right?
> Actually, VB.Net and C# ship with Visual Studio.Net. There are, in fact,
> quite a few languages now for .Net development Visual Studio.Net 2003, for
> example, also ships with J#.
>>> > 2. What are the general steps involved in porting all the
> > work done in the GUI based application?
> Not sure what you're asking here. It's not a matter of "porting" as you're
> not porting over an executable to a different platform. You're creating an
> entirely different sort of application from your executable. A web
> application is about as far from an executable as you can get. It usesis> for its' interface, and the interface and back-end are completely
> disconnected from one another, to such an extent that you actually have to
> rebuild all your server objects with each PostBack from the client. ThisHTTP.> due to the stateless nature of HTTP. In addition, there are quite a few
> limitations imposed by the nature of HTML, the browser interface, andto> You may have to re-design your interface quite a bit.
>
> What you really need to do is to analyze your executable, figure out howyour> "map" (ore re-design) interface elements from it to the appropriate HTML,
> and, depending upon the structure of the internals of your executable,
> either re-write them in .Net, or possibly re-use them (you can use COM
> interop, for example, to avoid having to rewrite any COM components of> executable).
>
> HTH,
>
> Kevin Spencer
> Microsoft FrontPage MVP
> Internet Developer
> [url]http://www.takempis.com[/url]
> Big things are made up of
> lots of Little things.
>
> "JH" <yhcontact@yahoo.com> wrote in message
> news:0ba101c33cb8$d11f14f0$a401280a@phx.gbl...>> >
> > I am trying to convert a GUI based windows application
> > developed in C++ into the same web enabled application.
> > My questions are:
> >
> > 1. .NET proveds VB and C# as default languages for web
> > application in ASP. Am I right?
> >
> > 2. What are the general steps involved in porting all the
> > work done in the GUI based application?
> >
> > 3. Can somebody suggest a faster and reliable way of
> > handling such tasks ?
> >
> > I am really in need of an urgent help inorder to grasp
> > the overview of such webifying process.
> > Thanks
> > John
>
Martin Olson Guest
-
Martin Olson #4
Re: Web enabled application development
1. ("No Answer, a clarifying question") There is several languages for .Net
but can you use them in ASP.Net? Can I, as an example, write 'Control
Language="cobol"' or Control Language="js (J#)"?
2. If you manage to get wrapped com+ to work, you shold move all logic from
the presentaion layer of your application to a layer of businesslogic. This
you should do in your GUI application an have it to work there. Future
changes you'll make, you will make in the businesslogic so they will then be
available in both the old GUI application and the new web application.
Changes involwing presentation must of course even be done in the clients.
If this wont work, to wrap your C++ code, then I should do it by convert the
C++ code to a CSharp, nTier solution and then still have the same
oppurtunities as above. Personally I do my new development as a nTier WinApp
with a NoLogic presentation layer and then I do a WebApp where I use the
same bussines layer as in my winapp. It goes quicker to debug code and
functionality in a WinApp as in a WebApp.
Regards
Martin
"Kevin Spencer" <kevin@SPAMMERSSUCKtakempis.com> schrieb im Newsbeitrag
news:uNa4M1LPDHA.2476@TK2MSFTNGP10.phx.gbl...HTML> Hi John,
>>> > 1. .NET proveds VB and C# as default languages for web
> > application in ASP. Am I right?
> Actually, VB.Net and C# ship with Visual Studio.Net. There are, in fact,
> quite a few languages now for .Net development Visual Studio.Net 2003, for
> example, also ships with J#.
>>> > 2. What are the general steps involved in porting all the
> > work done in the GUI based application?
> Not sure what you're asking here. It's not a matter of "porting" as you're
> not porting over an executable to a different platform. You're creating an
> entirely different sort of application from your executable. A web
> application is about as far from an executable as you can get. It usesis> for its' interface, and the interface and back-end are completely
> disconnected from one another, to such an extent that you actually have to
> rebuild all your server objects with each PostBack from the client. ThisHTTP.> due to the stateless nature of HTTP. In addition, there are quite a few
> limitations imposed by the nature of HTML, the browser interface, andto> You may have to re-design your interface quite a bit.
>
> What you really need to do is to analyze your executable, figure out howyour> "map" (ore re-design) interface elements from it to the appropriate HTML,
> and, depending upon the structure of the internals of your executable,
> either re-write them in .Net, or possibly re-use them (you can use COM
> interop, for example, to avoid having to rewrite any COM components of> executable).
>
> HTH,
>
> Kevin Spencer
> Microsoft FrontPage MVP
> Internet Developer
> [url]http://www.takempis.com[/url]
> Big things are made up of
> lots of Little things.
>
> "JH" <yhcontact@yahoo.com> wrote in message
> news:0ba101c33cb8$d11f14f0$a401280a@phx.gbl...>> >
> > I am trying to convert a GUI based windows application
> > developed in C++ into the same web enabled application.
> > My questions are:
> >
> > 1. .NET proveds VB and C# as default languages for web
> > application in ASP. Am I right?
> >
> > 2. What are the general steps involved in porting all the
> > work done in the GUI based application?
> >
> > 3. Can somebody suggest a faster and reliable way of
> > handling such tasks ?
> >
> > I am really in need of an urgent help inorder to grasp
> > the overview of such webifying process.
> > Thanks
> > John
>
Martin Olson Guest



Reply With Quote

