Web Forms VS Windows Forms

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

  1. #1

    Default Web Forms VS Windows Forms

    What can a windows form do that a web form cannot?


    Brendan Miller Guest

  2. Similar Questions and Discussions

    1. FORMS - printing and emailing interactive forms
      I'm using Acrobat 7 Pro on a Mac 10.4.8. I would like to create an interactive (order) form for my client to post on her website which her...
    2. Not ASP. Windows.Forms....
      .....but maybe someone here can help or point to the correct newsgroup. Anybody ever see something like this WRT row display.......Thanks ...
    3. Converting existing forms to the Flash forms
      I have forms and I change all the tags on them, but they don't change to the new 'Flash forms' in CFMX 7. Any ideas on this?
    4. Advanced>Forms>Export Forms Data is grayed out
      version 6.0.0 ¿ How do I activate this option ?
    5. appletviewr plus forms 9i - crash on forms service
      I'm trying to find workaround of the problem forms losing focus on IE6.0 on Windows XP using Jiniator. So I am trying to use appletviewer instead...
  3. #2

    Default Re: Web Forms VS Windows Forms

    You can do pretty much anything from either one if you try hard enough.
    But some things are easier to do with one than the other.
    For instance, HTML is great for creating snappy looking UI designs. Of
    course you can create great looking WinForms apps also, but it would likely
    take you more effort.

    Winforms tend to have richer functionality close at hand. For instance you
    can keep a constant connection alive between your users and your database
    (or other application components.) ASP.NET is stateless and that can make
    passing data around more challenging.

    WebForms require only a basic web browser on the client's machine, which
    eases deployment and future upgrades. (WinForms require your application
    and .NET framework to be installed on each user's computer.)

    With WinForms you can have your entire app on one machine if you so choose,
    with no network connection needed (depending on the nature of your app of
    course.)

    The look and behavior of your WebForm apps can vary depending on the web
    browser(s) your clients are using. WinForm apps are not usually dependent
    on web browsers to they tend to behave more consistently.

    WinForm apps can interact with the user's computer more deeply. WebForm
    apps have security limitations that prevent them (by default) from accessing
    the user's registry, modifying files on their hard drive, and other such low
    level tasks.

    --
    I hope this helps,
    Steve C. Orr, MCSD
    [url]http://Steve.Orr.net[/url]
    Developer for Hire


    "Brendan Miller" <nospam_hovercraft2x@hotmail.com> wrote in message
    news:lySZa.120863$4UE.43023@news01.bloor.is.net.ca ble.rogers.com...
    > What can a windows form do that a web form cannot?
    >
    >

    Steve C. Orr, MCSD Guest

  4. #3

    Default Re: Web Forms VS Windows Forms

    I've never seen a paper airplane that you could load an F-14B TomCat into.

    --
    HTH,

    Kevin Spencer
    Microsoft MVP
    ..Net Developer
    [url]http://www.takempis.com[/url]
    Complex things are made up of
    lots of simple things.

    "John Kraft" <jhkraft@ilstu.edu> wrote in message
    news:bh8squ$p9$1@malachite.ilstu.edu...
    > Brendan Miller wrote:
    > > What can a windows form do that a web form cannot?
    > >
    > >
    > What can a F-14B Tomcat do that a paper airlplane cannot?
    >

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