一道有关ASP提交表单的问题,不知道为啥提交后,后是收不到表单的值

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一道有关ASP提交表单的问题,不知道为啥提交后,后是收不到表单的值相关的知识,希望对你有一定的参考价值。

’第一个网页,这是一个表单,提交后我想给第二个网页,可是就是得不了值
<html>
<body background="1-1.jpg">
<center>
<p align="center">
<form name="t" medth="post" action="4.asp">
账号:<input type="text" name="UID" size="15">
密码:<input type="pasword" name="PWD" size="15">
昵称:<input type="text" name="Nickname" size="15">
<br><input type="submit" name="r" value="提交">
<input type="submit" name="d" value="取消"></br>
</form>
</center>
</table>
</body>
</html>
‘第二个网页
<%language="vbscript" %>
<!--#include file="conn.asp"-->
<html>
<body>
<%
dim mysql,mycord
uid=request.form("UID")
pwd=request.form("PWD")
nickname=request.form("nickname")
set mycord=server.createobject("adodb.recordset")
mysql="select * from userid"
mycord.open mysql,"DSN=chat1",1,3

mycord.addnew
mycord("UID")=uid
mycord("pwd")=pwd
mycord("nickname")=nickname
mycord.update

%>
<p>
<table border="1">
<tr>
<td>账号</td>
<td>密码</td>
<td>昵称</td>
</tr>
<%
do while not mycord.eof
%>
<tr>
<td><%=mycord("UID")%></td>
<td><%=mycord("pwd")%></td>
<td><%=mycord("NICKNAME")%></td>
</tr>
<%
mycord.movenext
loop
mycord.close
set mycord=nothing
%>
</table>
</body>
</html>

你把 medth="post"改为medth="get" 试试 参考技术A 楼主可以进数据库,看一下你的信息是否已经写入数据库了.如果写入数据库了,那就这样改程序.

<%
mycord.movefirst
do while not mycord.eof
%>

先把游标移动到第一条记录前.

如果是没有写入数据库.检查一下你的入库是否成功.
参考技术B yy年y月y日提交后计算出详细的日期 用y的日前减去x的日期 (需要判断某月· 帮你写了下,你测试下,有问题,百度消息我。。 代码:追问

以上是关于一道有关ASP提交表单的问题,不知道为啥提交后,后是收不到表单的值的主要内容,如果未能解决你的问题,请参考以下文章

asp 表单中文本区输入大量文字提交后会出现HTTP 400错误,怎么解决。

Rails - 为啥远程提交我的表单后 jQuery 不加载

网页表单提交后所提交的内容是怎么显示的

为啥ASP.net中动态控件在刷新后不能

ASP中用submit提交表单后不清空文本框的内容,怎么做?

asp:RegularExpressionValidator 后提交表单检查表单是不是有效?