Without a doubt, you will find a wide variety of developer and webmaster resources that include scripts, tutorials, website ideas, website reviews, and a developer resource directory.

Developer Checklist
These are the basic steps involved in any development project:

  • Start with an idea
  • Research idea
  • Make a content plan
  • Buy a domain 
  • Gather content
  • Buy or design template
  • Get logo made
  • Structure site
  • Fill in content
  • Find web hosting
  • Upload site 

Visit other websites that are owned and operated by Developerz.com.

Domain Names
Free Online Games
Stock Directory
Game Search Engine
Domain Name Directory
Domain Articles
Web Hosting Directory
Cheap Domain Registration

 

   


ASP Include Files

To include a file in ASP, use this SSI code:
CODE

<!--#include file="folder/file_name.asp"-->

Or you can use this code to include a virtual path:
CODE

<!--#include virtual="folderfile_name.asp"-->


Including files by querystring:
CODE

<%
Dim inc
inc = Request.QueryString("id")
%>
<!-- Put this code where you want to show the file. Remember to have the code above, in the top of the page, above the code below. -->
<% Server.Execute(inc & ".asp") %>


To select which file you want to show, put a query string in the end of the file name, like this; file.asp?id=include, where include.asp is the file who will be included.

Tutorial By Xtasy