哎,这么简单的问题不会,真想撞墙,哪位给我改改??
ariqi 2005-12-25 08:56:23 <%
dim dbconnection
set dbconnection=Server.CREATEOBJECT("ADODB.CONNECTION")
DBPath = Server.MapPath("Test.mdb")
dbconnection.Open "driver={Microsoft Access Driver (*.mdb)};dbq=" & DBPath
SQL="select * from TblId"
SET uplist=dbconnection.EXECUTE(SQL)
%>
<form method=post enctype="multipart/form-data" name=8009 action="http://192.168.5.11/show.asp" target="8009">
<input type=text name=identid size="18" maxlength=18 value='<%Response.Write(uplist("IDNum")) %>'>
<input type="submit" name=vote value=提交>
</form>
<%
uplist.Delete
uplist.MoveNext
dbconnection.Close
Set dbconnection=Nothing
%>
就是从access库里读取一个字段,然后显示出来,最后删除这么一个流程,
库名字叫 Test, 表名字叫:TblID 字段名字叫 IDNum。哪位能给我改改?