basic2advanced

Web site forum Print E-mail

 

I finally got around to install the forum that I promised for so long. You can now create an account and start posting.

 

Hope this helps! :)

 

To visit forum click here

 

 

Last Updated ( Thursday, 26 February 2009 20:23 )
 
Web design course - Site example Print E-mail
 New lesson at BCOC

Finally here :) This is a new site design I will be using for my web design course I am teaching at Bickenhall College of Computing, London College and London School of Computer Education.

I am planning to integrate this design all the way across to Asp.Net and PHP lessons. click here to view.

 

Below you will find books recommended for the web design course:

Xhtml & CSS book
click to buy

click to buy
 

click to buy
 

click to buy
 

 

There are many great books to buy. I would also recommend: 

click to buy
 

click to buy
 
  
Last Updated ( Tuesday, 17 February 2009 00:43 )
 
Asp.Net Namespaces Print E-mail

Asp.Net being part of .Net Framework gives you access to the whole .Net Class Library. This library holds about 5000+ classes. To keep things organized, Microsoft separeted those classes by functionality into libraries or Namespaces. By importing apropriate namesapces you can bring functionality to your web forms. Functionalities as sending emails, uploading files or working with databases.

There are two ways you can do this:

  1. Importing the namespace <%@ Import Namespace="System.Data.SqlClient" %>
  2. Use class fully qualified name System.Web.UI.WebControls

If you using code-behing files to separate your presentation to import certain namespaces, use the keyword Imports:

' importing

Imports System.Data.SqlClient

Last Updated ( Monday, 12 May 2008 08:59 )