网页编程高手进来 不懂的别捣乱 如果能解决问题有分赠送
发布网友
发布时间:2024-10-22 22:30
我来回答
共2个回答
热心网友
时间:2024-11-05 19:30
你这个问题问好久了.怎么还没有人来回答??
记录存放在record.txt里
<%
dim fso,txt,url
url=request("webn")
if url<>"" then
set fso=server.createobject("scripting.filesystemobject")
set txt=fso.opentextfile(server.mappath("record.txt"),8,true)
txt.writeline url&chr(9)&now
txt.close
set fso=nothing
set txt=nothing
response.redirect "http://"&url&".com"
end if
%>
<html>
<head>
<title>
记录
</title>
</head>
<body>
<form method="post" id="fr">
<INPUT TYPE="text" NAME="webn" id="webn" VALUE="">
<INPUT TYPE="button" VALUE="确定" ONCLICK="if(document.getElementById('webn').value.length >
0){document.getElementById('fr').submit();}else{alert('请输入内容');}">
</form>
</body>
</html>
热心网友
时间:2024-11-05 19:31
那你就用FSO写入文本中记录下来吧!