The illustrations shown below, represents an unorthodox way of testing Expression Web over the intranet of close network system. The target workstation was XP home (and later tired with XP-7 ), hosting Apache Server with .Net 3.5 Module scripted in Apache loader file.
Step: 1

Step2

Step3

Step4

Step5 Since this folder is not configured through conf files there fore it aspx. pages will not run.

Step6 The following code configures, asp. net in apache 2.0, windows XP home edition

#---this section handles asp.net configurarion
#aspnet module installation
#asp.net
LoadModule aspdotnet_module "modules/mod_aspdotnet.so"

AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj licx rem resources resx soap vb vbproj vsdisco webinfo

<IfModule mod_aspdotnet.cpp>
# Mount the ASP.NET /asp application
AspNetMount /my_aspnet "c:/my_aspnet"
#/my_aspnet is the alias name for asp.net to execute
#"c:/my_aspnet" is the actual execution of files/folders in that location

# Map all requests for /asp to the application files
Alias /my_aspnet "c:/my_aspnet"
#maps /my_aspnet request to "c:/my_aspnet"
#now to get to the /my_aspnet type http://localhost/my_aspnet
#It'll redirect http://localhost/my_aspnet to "c:/my_aspnet"
# Allow asp.net scripts to be executed in the /my_aspnet example
<Directory "c:/my_aspnet">
Options FollowSymlinks ExecCGI
Order allow,deny
Allow from all
DirectoryIndex index.htm index.aspx
#default the index page to .htm and .aspx
</Directory>

# For all virtual ASP.NET webs, we need the aspnet_client files
# to serve the client-side helper scripts.
AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) "C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"
<Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
Options FollowSymlinks
Order allow,deny
Allow from all
</Directory>
</IfModule>
#asp.net

 

Step7

I am going to select a folder that is configured in apache2.0 to run asp.net

Step8

Step9 Now transfer and run

Step10

Step11

when you click on view remote, since I am using a folder in the same computer it will open up the folders

Step12

this site will allow to change there, if you wish to do that

or synchronize from the local site as described else where on this page.

Step13

Step14 Reports

Step15 Synchronization form local to remote

Step16 edit index page as shown below

Note there is no change yet in the remote file

Step17 Now synchronize

Step18 Some how, I noticed a cache in this workstation and noted that no change but it chaged the remote files