473,473 Members | 1,843 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

*really* getting started

Hi,

I have 8 years experience developing commerical software for Windows
(C/C++/x86 Assembler/C#). What I have zero experience with is "developing
for the web." I mean, I can look at HTML and understand what is going on,
but I've never developed anything larger than a few simple pages.

I have a rather deep understanding of .NET and the BCL but I have no
experience with ASP.NET perse.

I am wondering where I should start. It seems as though most
references/tutorials are *all* ASP.NET *or* all HTML. I would like to learn
'web development using ASP.NET'. Is there a tutorial/book that is
appropriate for someone like me?

Thanks in advance for any advice...

-TJ
Nov 18 '05 #1
6 1201
My advice would be to begin with *all* ASP.NET. It sounds like you'll
easily become more familiar with the HTML fundamentals as you go along. One
caveat, though - I would also recommend staying away from the
GUI/drag-and-drop tutelage. Read and write it all in code. The GUI
developers, in my opinion, miss out on a lot of the back-end necessities
required for clean, sharp, advanced coding. It doesn't mean some very
adequate sites aren't developed by pure graphics designers, but they tend to
have simple architectures and it sounds like you are reaching beyond that.
"Tom Jones" <to********@hotmail.com> wrote in message
news:uV**************@TK2MSFTNGP09.phx.gbl...
Hi,

I have 8 years experience developing commerical software for Windows
(C/C++/x86 Assembler/C#). What I have zero experience with is "developing
for the web." I mean, I can look at HTML and understand what is going on,
but I've never developed anything larger than a few simple pages.

I have a rather deep understanding of .NET and the BCL but I have no
experience with ASP.NET perse.

I am wondering where I should start. It seems as though most
references/tutorials are *all* ASP.NET *or* all HTML. I would like to
learn 'web development using ASP.NET'. Is there a tutorial/book that is
appropriate for someone like me?

Thanks in advance for any advice...

-TJ

Nov 18 '05 #2
Hi,

You basically have 3 things you need to learn:

How to code web apps in ASP.Net.
How to work with HTML.
How to work with Javascript.

Additionally, if you havn't already done this with C#, you'll want to learn
how to create and consume web services. For the Javascript the best book I
can recommend is:

Beginning Javascript ISBN: 0-7645-4405-5

For the other two I would do a search on Amazon and read the reviews. I'm a
bit out of the loop on new books in those categories. Another thing you
might want to look into, since you are just starting, is whether you want to
jump in with VS.Net 2003 or start with the VS.Net 2005 beta. If you aren't
planning on doing anything commercial for a year or so you might want to
just go with 2005. Good luck! Ken.

--
Ken Dopierala Jr.
For great ASP.Net web hosting try:
http://www.webhost4life.com/default.asp?refid=Spinlight

"Tom Jones" <to********@hotmail.com> wrote in message
news:uV**************@TK2MSFTNGP09.phx.gbl...
Hi,

I have 8 years experience developing commerical software for Windows
(C/C++/x86 Assembler/C#). What I have zero experience with is "developing
for the web." I mean, I can look at HTML and understand what is going on,
but I've never developed anything larger than a few simple pages.

I have a rather deep understanding of .NET and the BCL but I have no
experience with ASP.NET perse.

I am wondering where I should start. It seems as though most
references/tutorials are *all* ASP.NET *or* all HTML. I would like to learn 'web development using ASP.NET'. Is there a tutorial/book that is
appropriate for someone like me?

Thanks in advance for any advice...

-TJ

Nov 18 '05 #3
Tom, If you're like me and like to learn from books, I can point you to a few
things:

I've not seen a good book that does both ASP.NET and HTML. My bible for
ASP.NET is "Programming ASP.NET" by Dino Esposito. Understand everything in
there (1100+ pages) and you'll have arrived. There are easier intro books,
but Esposito's book covers all that and way more with real-world examples.

Re HTML, I liked both "Creating Web Pages with HTML" and "How to Do
Everything with HTML" as good intros, then back those up with a heavier
reference.

It's hard to get away from understanding javascript well if you're in this
for real. "How to do Everything with Javascript" is another good intro, maybe
with a reference like O'Reilly's "rhino" book, "javascript: The Definitive
Guide"

Finally, you'll need to understand CSS (Cascading Style Sheets) for most
things. I like O'Reilly's "Cascading Style Sheets: The Definitive Guide."

Have fun.

hth,

Bill

"Tom Jones" wrote:
Hi,

I have 8 years experience developing commerical software for Windows
(C/C++/x86 Assembler/C#). What I have zero experience with is "developing
for the web." I mean, I can look at HTML and understand what is going on,
but I've never developed anything larger than a few simple pages.

I have a rather deep understanding of .NET and the BCL but I have no
experience with ASP.NET perse.

I am wondering where I should start. It seems as though most
references/tutorials are *all* ASP.NET *or* all HTML. I would like to learn
'web development using ASP.NET'. Is there a tutorial/book that is
appropriate for someone like me?

Thanks in advance for any advice...

-TJ

Nov 18 '05 #4
Another resource you might want to check out are the Starter Kits at
http://asp.net/Default.aspx?tabindex=8&tabid=47. This will give you 6
applications with source code to tinker with.

--
Scott
http://www.OdeToCode.com/blogs/scott/

On Tue, 28 Sep 2004 10:06:37 -0700, "Tom Jones"
<to********@hotmail.com> wrote:
Hi,

I have 8 years experience developing commerical software for Windows
(C/C++/x86 Assembler/C#). What I have zero experience with is "developing
for the web." I mean, I can look at HTML and understand what is going on,
but I've never developed anything larger than a few simple pages.

I have a rather deep understanding of .NET and the BCL but I have no
experience with ASP.NET perse.

I am wondering where I should start. It seems as though most
references/tutorials are *all* ASP.NET *or* all HTML. I would like to learn
'web development using ASP.NET'. Is there a tutorial/book that is
appropriate for someone like me?

Thanks in advance for any advice...

-TJ


Nov 18 '05 #5
Thank you to everyone who responded - I truly appreciate the advice.

I'm just over 30 and I already feel like a dinosaur ("grumpy old C++
programmer") ;-)

-TJ

PS: I'm sure you'll be hearing more from me... :)

"Tom Jones" <to********@hotmail.com> wrote in message
news:uV**************@TK2MSFTNGP09.phx.gbl...
Hi,

I have 8 years experience developing commerical software for Windows
(C/C++/x86 Assembler/C#). What I have zero experience with is "developing
for the web." I mean, I can look at HTML and understand what is going on,
but I've never developed anything larger than a few simple pages.

I have a rather deep understanding of .NET and the BCL but I have no
experience with ASP.NET perse.

I am wondering where I should start. It seems as though most
references/tutorials are *all* ASP.NET *or* all HTML. I would like to
learn 'web development using ASP.NET'. Is there a tutorial/book that is
appropriate for someone like me?

Thanks in advance for any advice...

-TJ

Nov 18 '05 #6
Good Luck.
I'm 30!
But still coding all:) and welcome to the club!
Patrick

"Tom Jones" wrote:
Thank you to everyone who responded - I truly appreciate the advice.

I'm just over 30 and I already feel like a dinosaur ("grumpy old C++
programmer") ;-)

-TJ

PS: I'm sure you'll be hearing more from me... :)

"Tom Jones" <to********@hotmail.com> wrote in message
news:uV**************@TK2MSFTNGP09.phx.gbl...
Hi,

I have 8 years experience developing commerical software for Windows
(C/C++/x86 Assembler/C#). What I have zero experience with is "developing
for the web." I mean, I can look at HTML and understand what is going on,
but I've never developed anything larger than a few simple pages.

I have a rather deep understanding of .NET and the BCL but I have no
experience with ASP.NET perse.

I am wondering where I should start. It seems as though most
references/tutorials are *all* ASP.NET *or* all HTML. I would like to
learn 'web development using ASP.NET'. Is there a tutorial/book that is
appropriate for someone like me?

Thanks in advance for any advice...

-TJ


Nov 18 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Jim | last post by:
I need some help getting started with a .NET web project for a commercial site. I am new to .NET and my understanding of some (but not all) of its concepts is a little sparse. I apologize for the...
0
by: Jim | last post by:
This si a repost, I apologize but perhaps my original inquiry got buried under all the usenet spam... I need some help getting started with a .NET web project for a commercial site. I am new to...
0
by: cara_little | last post by:
Good Morning, I'm trying to get started with the Enterprise Library to evaluate it and recommend to the rest of the developers in the company. However, I'm having a heck of a time getting started...
80
by: Bibby | last post by:
Hi, I'm interested in getting started in the programming world. I've dabbled in C, C++ and VB6. Which would be the best language to focus my attention to regarding the following considerations: ...
2
by: Belinda | last post by:
Hi. I am just getting started with DB2's spatial extender and could really use some help. Pointers to good docs or examples are welcome. I am using DB2 version 8 on Sun. I have a database of...
6
by: Jack Duijf | last post by:
Hello, I am looking for a person in The Netherlands that is willing to help me getting started with Vb.net. Please send a message to jack@aicn.nl if you can help me getting started with the...
1
by: =?Utf-8?B?Q29kZVNsaW5nZXI=?= | last post by:
I plan to build my own 2008 Server/Hyper-V system and will not be using one of the tested Dell or HP systems from the release notes and could use some pointers as to my assumnptions and answers to...
4
by: evenlater | last post by:
Anybody know how to prevent the annoying Access 2007 "Getting Started with Access" page from showing up when the database is closed using DoCmd.Quit? My database is used in a terminal server...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.