show/hide this revision's text 2 deleted 38 characters in body

My experience is that very few web-devs are capable of (or at least are) sufficiently capable with server-side and client-side work, so the good news is that it isn't a killer to have minimal experience with CSS/JS/HTML, although some amount will be expected.

Where you start depends on what related background you can bring to the table. For example, exposure to XML/XSLT is excellent for picking up HTML, and some xpath concepts relate well to CSS. Scripting technologies are scripting technologies, the only thing special about the browser environment is understanding the DOM relation and the native limitations of the environment (i.e. file manipulation, event handling, etc..)

My advice is to take things one at a time, and don't try and become an expert in each. It's enough to know how to get by. Knocking up some web app projects is an excellent way to start getting the feel of it, and as always I suggest starting with your own personal site is a good way to learn something with "real" problems.

Some central concepts are:

  • HTTP and state
  • the server/client model
  • the ASP.NET pipeline (handlers and modules)
  • the ASP.NET page lifecycle
  • separation of concerns
  • the DOM and client-side event handling
  • and the cascade part of CSS

Most things should be transferable or readily apparent from winforms dev.

A word of caution: many middleware-like things exist in web-dev designed to make your life easier, but because they are just wrappers on javascript/html/css they have their own syntax and foibles and it's not the same as learning the root tech. I strongly advise you to learn JS not jquery, and html not asp.net controls at first. It would be like learning to use a mouse before a keyboard.

show/hide this revision's text 1

My experience is that very few web-devs are capable of (or at least are) sufficiently capable with server-side and client-side work, so the good news is that it isn't a killer to have minimal experience with CSS/JS/HTML, although some amount will be expected.

Where you start depends on what related background you can bring to the table. For example, exposure to XML/XSLT is excellent for picking up HTML, and some xpath concepts relate well to CSS. Scripting technologies are scripting technologies, the only thing special about the browser environment is understanding the DOM relation and the native limitations of the environment (i.e. file manipulation, event handling, etc..)

My advice is to take things one at a time, and don't try and become an expert in each. It's enough to know how to get by. Knocking up some web app projects is an excellent way to start getting the feel of it, and as always I suggest starting with your own personal site is a good way to learn something with "real" problems.

Some central concepts are:

  • HTTP and state
  • the server/client model
  • the ASP.NET pipeline (handlers and modules)
  • the ASP.NET page lifecycle
  • separation of concerns
  • the DOM and client-side event handling
  • and the cascade part of CSS

Most things should be transferable or readily apparent from winforms dev.

A word of caution: many middleware-like things exist in web-dev designed to make your life easier, but because they are just wrappers on javascript/html/css they have their own syntax and foibles and it's not the same as learning the root tech. I strongly advise you to learn JS not jquery, and html not asp.net controls at first. It would be like learning to use a mouse before a keyboard.