creating aspx page without any server
Starting with an Empty site
Now let us create a page

Expression web GUI creates a local folder in your hard drive

Note the coding style

now add some codes

save this page

Note the local folder becomes a virtual web-site

Now click on "Site"menu from the top menu bar.

Now check on the manage the website using hidden metadata files

Preview

Advance tab

language

 

now view it over apache

the codes

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<%@ Page Language="C#" %>
<html dir="ltr" xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>testing asp-pages</title>
</head>
<body>
Testing ASPX extensions with C# <br/>
<%=DateTime.Now.ToString()%>
<form id="form1" runat="server">
</form>
</body>
</html>
 

Setting Home Page