菜鸟继续求助
在这里先多谢各为对"菜鸟求助"贴给予的支持.那个问题我已经搞定了,原来是数据类型不对.今天在做数据写入时再次受搓呀(我幼小的心那能经的起这番挫折呀,神呀求求我吧)
那位神快来帮帮我呀.
问题如下:没有错误信息,但是写入的都是空白记录.很郁闷.一下午都没有解绝.哈哈,别笑我笨呀.
代码如下:
<form action="01.asp" method="post" name="form1">
<label><input type="text" name="textfield" size=50 value="小菜"/></label>
<label><input type="password" name="textfield2" size=50/></label>
<label><input type="text" name="textfield3" size=50/></label>
<label><input type="text" name="textfield4" size=50/> </label>
<label><input type="text" name="textfield5" size=50/></label>
<br>
<label>
<input type="submit" name="Submit" value="提交">
</label>
<label>
<input type="reset" name="Submit2" value="重置">
</label>
</form>
以上是注册表的代码zcb.asp
<% dim connstr
connstr="provider=microsoft.jet.oledb.4.0;data source=" & server.mappath("zcxx.mdb")
set bb=server.createobject("adodb.connection")
bb.open connstr %>
<% dim zh,mm,xm,nl,dh
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from chf",connstr,3,3 问这句里后边加的参数我不明白什么时间用1,1或1,3或3,3zh=request.Form("zh")
mm=request.Form("mm")
xm=request.Form("xm")
nl=request.Form("nl")
dh=request.Form("dh")
exec="insert into chf (zh,mm,xm,nl,dh) values ('"&zh&"','"&mm&"','"&xm&"','"&nl&"','"&dh&"')"
bb.execute exec
bb.close
set bb=nothing
response.write "恭喜成项注册" %>
以上是恭喜成项注册代码01.asp