PDA

View Full Version : A quick, easy, but thorough reference site?


natgrauman
09-27-02, 18:30
Hi Folks,

I'm debugging someone else's (poorly, poorly commented) code here, and while I'm fairly well schooled in programming fundamentals (control structures, theory, etc) I don't have a lot of in depth experience with web technologies. Thus I'm constantly coming across some funky function, tag, object/class or method and I need a way to look it up and figure out what it does and how it's used.

Can anyone suggest a good site where I can look up ASP objects & properties, HTML tags, Javascript methods, objects, etc.? I just want a simple explanation of whatever I'm looking up, its uses, parameters, attributes, whatever is applicable along with some good examples.

Most of the sites I try are alot more complicated than one might think (difficult to navigate, etc).

Thanks very much,

Nat

rnealejr
09-27-02, 19:57
Check out the following:

4guysfromrolla.com
asp101.com
devguru.com

There are quite a few.

rnealejr
09-27-02, 19:58
Is this asp 3 or asp.net ?

rnealejr
09-27-02, 20:00
Also check out the following:

tutorials (http://www.w3schools.com/)

r937
09-27-02, 20:28
for a straightforward html reference, see the Web Design Group's HTML 4.0 Elements (http://www.htmlhelp.com/reference/html40/alist.html)

an excellent javascript example/faq/tutorial site is irt.org/script (http://irt.org/script/), although i'm not sure it functions well as a lookup reference if you're trying to figure out what a certain method does

rudy
http://rudy.ca/

natgrauman
09-28-02, 13:08
Originally posted by rnealejr
Is this asp 3 or asp.net ?


ASP 3.0

.... .NET maybe next year!

natgrauman
09-28-02, 13:10
Those are all great suggestions. I've been checking them out and they'll work great.

Thank you!