So if you've got an interest in asp.net and a bit of time I encourage you to check it out. If you're coming from a scripting language like classic ASP or PHP you'll find it a bit different at first, Java people should feel more familiar.
Before you get going, if you want to see what developing in asp.net looks like you can watch this video of a ajax enabled, sql server backed to-do list being built in asp.net (the whole app is built in 20 minutes include designing the database).
http://download.microsoft.com/download/0/f...AX-ToDoList.wmvYou can write asp.net using Notepad, but I highly recommend using Visual Studio. It's honestly the best code editor I've ever used and I use it for PHP, regular XHTML, CSS, etc.
So first off, you'll want to get a copy of the free Visual Studio 2005 Express. This will take care of all your coding, includes SQL Server 2005, and the MSDN help and documentation library. VS 2005 also runs an on-demand webserver for testing your work so you don't need to install or setup a local server. Yep, they're all FREE, they're not trials, and most people won't come up against the limits of the Express edition for a long time.
Download the .net framework 2.0 from:
http://www.microsoft.com/downloads/details...;displaylang=enThen head over to:
http://msdn.microsoft.com/vstudio/express/...ds/default.aspxDownload SQL Server 2005 Express, then the Visual Web Developer 2005 Express
Install in this order: framework, sql server, vwd
--------------------------------------
Ok, you've got all your tools - now on to trying it out. Your first decision is going to be what language you want to program asp.net in. You've got a lot of choices including C++, C#, VB.net, IronPython, IronRuby, J# and others. My recommendation is to go with C# or VB.net since almost all the examples, articles, and books are in those two. Personally I like C# better than VB.net, and unless (and even if) you've got a background in Visual Basic it's the one I'd recommend.
There's tons of books, blogs, and articles on learning and using asp.net. I'd recommend going over to www.asp.net and checking out some of the beginner's videos:
http://asp.net/learn/videos/default.aspx?tabid=63#beginnersor the "Migrating to asp.net" videos:
http://asp.net/learn/videos/default.aspx?tabid=63#migratingYou can pull those up, open VWD and work along with them to build all sorts of stuff.
Finally, if you have any questions just post them and I'll be happy to help.