Web enabled application development

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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...
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default Re: Web enabled application development

    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 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

  4. #3

    Default 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...
    > 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 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
    >
    >

    Martin Olson Guest

  5. #4

    Default 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...
    > 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 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
    >
    >

    Martin Olson Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139