⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gbproc.asp

📁 Onlice Course system built in java language. Hope it helps
💻 ASP
字号:
<% Option Explicit %>
<html>
<head>
<title>Guest Book Response</title>
</head>
<body topmargin="20" leftmargin="20" background="../images/GENERIC.gif">

<%=Request.Form("FirstName")%><br>
<%=Request.Form("LastName")%><br>
Gender: <%=Request.Form("Gender")%><br>
Age: <%=Request.Form("Age")%><br>
Email: <%=Request.Form("Email")%><p>
<p>
<%
Dim filesys, peoplefile
Set filesys = CreateObject("Scripting.FileSystemObject")
Set peoplefile = filesys.OpenTextFile("gbpeople.txt", 8, true)
peoplefile.WriteLine Request.Form("FirstName")
peoplefile.WriteLine Request.Form("LastName")
peoplefile.WriteLine Request.Form("Gender")
peoplefile.WriteLine Request.Form("Age")
peoplefile.WriteLine Request.Form("Email")
peoplefile.Close
%>

<h3>This information has been saved.</h3>

<a href="gblist.asp">See others who signed in.</a>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -