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

  1. #1

    Default Newbie to ASP.net

    Hi All,
    As stated above, I am new to ASP.net. I have been using ASP2/3 for
    about 6 years now. Bought some books on ASP.net. I was wondering, do
    most of you guys use the Server and/or Web Controls. I guess the
    thought of no more coding HTML is "mind-boggling". Has ASP.net become
    like VB6 WinForms (drag and drop to create User Interface). Also, are
    there any downsides in using Server and/or Web controls.
    I am currently using VS.net and C#.

    Thanks in advance,
    Clem
    Clement Kim Guest

  2. Similar Questions and Discussions

    1. A newbie with a newbie question
      Good afternoon everyone, My Name is Dusty I am new to this forum and pretty new to Acrobat. I have Acrobat 9 running on an IMAC running 10.5.2 I...
    2. Help for a Newbie
      Hi All, I have 3 files I am using, Index.html, Test.asp, MyNewpage.html. I am try to load MyNewPage.html into Test.asp. Index.html has a link as...
    3. newbie ill q
      Hey everyone, I have to work on some logos for my place of business... I've scanned them in , edited them in Photoshop, and then made a workpath...
    4. Please help a newbie!
      Hi, I am just starting out using Flash MX. I just want some general knowledge on Flash......I am planning on making a website, but I have no idea...
    5. Newbie help with LWP
      When you login the server must pass a token back to the browser so that the browser can identify itself to the server in the next request. This is...
  3. #2

    Default Re: Newbie to ASP.net

    HTML is old hat. Web Controls and the rest of ASP.NET encapsulate most of
    that messiness for you.
    You don't even need to know HTML at all to be a halfway decent ASP.NET
    developer.
    However it will come in handy from time to time for implementing more
    advanced functionality.

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


    "Clement Kim" <clemorama@yahoo.com> wrote in message
    news:b4921214.0308071425.1c52fff1@posting.google.c om...
    > Hi All,
    > As stated above, I am new to ASP.net. I have been using ASP2/3 for
    > about 6 years now. Bought some books on ASP.net. I was wondering, do
    > most of you guys use the Server and/or Web Controls. I guess the
    > thought of no more coding HTML is "mind-boggling". Has ASP.net become
    > like VB6 WinForms (drag and drop to create User Interface). Also, are
    > there any downsides in using Server and/or Web controls.
    > I am currently using VS.net and C#.
    >
    > Thanks in advance,
    > Clem

    Steve C. Orr, MCSD Guest

  4. #3

    Default Re: Newbie to ASP.net


    Steve,
    Thanks for the quick reply. "Hardly anymore HTML coding, cool yet
    weird." Just wondering do you use developersdex a lot? Never heard of it
    until you and 2 others replied to my post. I guess I'll give it a try.

    Thanks Again,
    Clem


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Clement Kim Guest

  5. #4

    Default Re: Newbie to ASP.net


    Eruess,
    Thanks for the quick reply... I too am a control freak and that's why I
    posted my question. I still can't believe it but you and a few others
    said it's true. I understand what you mean by designing and programming
    and from what little I've gathered, ASP.net is better at separating both
    of these than ASP2/3 was.

    Once Again Thanks,
    Clem


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Clement Kim Guest

  6. #5

    Default Re: Newbie to ASP.net

    It is the first place I go to for technical help for .net matters.
    Usually get very quick responses from knowledgable users with good
    suggestions.

    Have been able to solve several key issues that could not be researched
    in the MSDN Knowledge Base.

    Bob Jones
    [url]http://www.cookbookplus.com[/url]

    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Bob Jones Guest

  7. #6

    Default Re: Newbie to ASP.net

    I have a tendancy to use a good bit of HTML in ASP.Net apps. I have seen way
    too much abuse of WebControls and HtmlControls in ASP.Net pages. Places
    where, for example, a simple image tag was needed, but the developer dragged
    an ASP.Net Image control onto the page. This makes for a lot of overhead in
    the end application. Raw HTML is compiled at run-time into LiteralControls,
    which have very littel overhead. So, I have an optimization rule of thumb
    which I go by:

    1. Use HTML when you can (smallest footprint - compiles to LiteralControls)
    2. If you need more functionality, use an HTMLControl (next smallest
    footprint)
    3. If necessary, use a WebControl (biggest footprint)

    I do my HTML in FrontPage and then paste it into my ASPX pages in VS.Net.
    Then I can right-click form elements and make them "runat=server" instantly,
    drag other controls onto the page, etc. quite easily and quickly. Then I can
    go about writing the CodeBehind.

    --
    HTH,

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


    "Steve C. Orr, MCSD" <Steve@Orr.net> wrote in message
    news:eCWIISTXDHA.3248@tk2msftngp13.phx.gbl...
    > HTML is old hat. Web Controls and the rest of ASP.NET encapsulate most of
    > that messiness for you.
    > You don't even need to know HTML at all to be a halfway decent ASP.NET
    > developer.
    > However it will come in handy from time to time for implementing more
    > advanced functionality.
    >
    > --
    > I hope this helps,
    > Steve C. Orr, MCSD
    > [url]http://Steve.Orr.net[/url]
    >
    >
    > "Clement Kim" <clemorama@yahoo.com> wrote in message
    > news:b4921214.0308071425.1c52fff1@posting.google.c om...
    > > Hi All,
    > > As stated above, I am new to ASP.net. I have been using ASP2/3 for
    > > about 6 years now. Bought some books on ASP.net. I was wondering, do
    > > most of you guys use the Server and/or Web Controls. I guess the
    > > thought of no more coding HTML is "mind-boggling". Has ASP.net become
    > > like VB6 WinForms (drag and drop to create User Interface). Also, are
    > > there any downsides in using Server and/or Web controls.
    > > I am currently using VS.net and C#.
    > >
    > > Thanks in advance,
    > > Clem
    >
    >

    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