如何向前端推送用戶請(qǐng)求的信息?
postinfo.htm
<head>
<title>星河影動(dòng)之回應(yīng)用戶請(qǐng)求信息</title>
</head>
<body>
<form action="postdata.asp" method="post">
' 使用Post方法
<p>請(qǐng)輸入您的姓名:<input name="name" size="20"><br>
電子信箱:<input name="e_mail" size="40"></p>
<hr>
<p><input type="submit" value="確定"> <input type="reset" value="重寫"></p>
</form>
</body></html>
postdata.asp
<h2>
<% =Request.Form("name") %>您好!<br>
您的電子信箱是:<% =Request.Form("e_mail") %>
</h2>
相關(guān)文章
如何用下拉列表顯示數(shù)據(jù)庫(kù)里的內(nèi)容?
如何用下拉列表顯示數(shù)據(jù)庫(kù)里的內(nèi)容?...2006-11-11如何用組件實(shí)現(xiàn)自動(dòng)發(fā)送電子郵件?
如何用組件實(shí)現(xiàn)自動(dòng)發(fā)送電子郵件?...2006-11-11如何讓用戶再次訪問我的網(wǎng)站時(shí)不需再提交相關(guān)信息?
如何讓用戶再次訪問我的網(wǎng)站時(shí)不需再提交相關(guān)信息?...2006-11-11