Our Recommendation for You Search your Query, You can find easily. for example search by book name or course name or any other which is related to your education

label name


























PHP

ASP Install

Run ASP on Your PC


Using WebMatrix

WebMatrix is a free tool that provides an easy way to build ASP pages.
WebMatrix contains:
  • Web examples and templates
  • Support for many different web languages
  • A web server (IIS Express)
  • A database server (SQL Server Compact)
With WebMatrix you can start with an empty web site or you can build on templates.
WebMatrix also has built-in tools for databases, web security, search engine optimization, and web publishing.
To install WebMatrix, follow this link: WebMatrix

Create an Empty Web Site

Follow the three simple steps below to create an empty web site with WebMatrix:
  • Select a Template
  • Edit the Home Page
  • Run the Web Site

Step 1: Select an HTML Template

Start WebMatrix, select New.
WebMatrix
From the template gallery, select Empty Site from HTML templates.
Name the site DemoWeb (or anything you like)and click Next:
Web Templates
WebMatrix creates a new web site and displays a workspace window.
In the left pane, select the Files workspace:
Home Page

Step 2: Edit the Home Page

To edit your home page, double-click the file index.html.
Put the following content into the file:

index.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />
    <title>Web Page Demo</title>
</head>
<body>
    <h1>My First Web Page</h1>
</body>
</html>

Step 3: Run Your Web Site

In WebMatrix, click Run:
WebMatrix starts a web server and runs the page in your default browser:
My First
WebMatrix selects a random port number for your local web server.
In the example above it is displayed as: http://localhost:4676.

Create an Empty ASP Web Site

Rename the home page from index.html to default.asp.
Now you are ready to start working with ASP.


All topic of ASP