|
Web site forum |
|
|
|
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 |
|
|
 | 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: |
|
|
Last Updated ( Tuesday, 17 February 2009 00:43 )
|
|
|
Asp.Net Namespaces |
|
|
|
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: - Importing the namespace <%@ Import Namespace="System.Data.SqlClient" %>
- 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 )
|
|
|