OOP Class8

esse quam videri
Revision as of 16:09, 26 October 2006 by Jeff (talk | contribs)
Jump to: navigation, search



Motorvehicle Diagram

Oop Motorvehicle Diagram


Anatomy of an aspx page

Page Directive

Console applications start executing in the main method

<csharp>public static void Main() {}</csharp>

The .Net Framework can also execute on the web. Rather than having a Main method a web page starts it's execution with a method called Page_Load

<csharp>public Page_Load { }</csharp>

There are actually several method that are exeuted in an aspx page.

Simple Aspx Page

http://iam.colum.edu/oop/classsource/class8/Aspx/hello.aspx hello.aspx

http://iam.colum.edu/oop/classsource/class8/Aspx/hello2.aspx hello2.aspx

http://iam.colum.edu/oop/classsource/class8/Aspx/Label.aspx Label.aspx

Dogs on the web

DogWeb

Courses on the Web

Student Web

Home Work

Convert one of your classes to work as an aspx page.

Have a nice break....