Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Asp and Class Object Oriented

Status
Not open for further replies.

aspvbnetnerd

Programmer
May 16, 2006
278
SE
I would like to learn Object Oriented ASP.
Working with classes.

I would like to learn ASP as the Pro's do.

Is there anybody that know i site or have source code to share?


/George
 
There are many languages you can use in ASP. VBScript and Javascript are the most common.

VBScript has classes but they are actually C structs or Pascal records. They can be dynamically allocated but lack the OO structures like inheritence or polymorphism.

Javascript also has classes but they are really weird. You can fake inheritence and polymorphism in Javascript.

There is ASP and ASP.net. ASP.net is a different ball game. That uses C# and VB.net. You can do the OO stuff with those. Just get yourself a C# or VB.net book. Check that it has web examples and continue from there. Can't recommend any because I just use everyone else's books. There are lots lying around my office.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top