< html > < head > < meta http-equiv="Content-Type" content="text/html; charset=gb2312" > < meta name="GENERATOR" content= "Microsoft FrontPage 4.0" > < meta name="ProgId" content= "FrontPage.Editor.Document" > < title >追加一条新记录< /title > < /head > < body > < % if request.form("cmdok")="确定" then % > < % set dbconnection=server.createobject ("adodb.connection") dbconnection.open"test","hxl","123" sqlquery="insert "办公文件" (文件名,文件内容) values ('request.form("Txtbiaoti")',' request.form("Txtneirong")') set recadd=dbconnection.execute(sqlquery) % > < % else % > < p align="center" >追加记录< /p > < form method="POST" action="" > < p >文件名:< input type="text" name="Txtbiaoti" size="20" >< /p > < p >文件内容:< /p > < p > < textarea rows="3" name="Txtneirong" cols="60" >< /textarea > < /p > < p align="center" >< input type="submit" value="确定" name="Cmdok" > < input type="reset" value="重写" name="Cmdcancel" > < /p >< /form > < % end if% > < /body > < /html >
③query.asp:实现对《办公文件》数据表记录的查询。程序仅实现对《办公文件》中"文件名"的查询,查询结果用一个表单(Table)列出。以下是源程序:
< html > < head > < meta http-equiv="Content-Type" content="text/html;charset=gb2312" > < meta name="GENERATOR" content="Microsoft FrontPage 4.0" > < meta name="ProgId" content= "FrontPage.Editor.Document" > < title >检索文件< /title > < /head > < body bgcolor="#ffffdd" > < % set dbconnection=server.createobject ("adodb.connection") dbconnection.open "test","hxl","123" sqlquery="SELECT 文件名 FROM 办公文件 " set resultlist=dbconnection.execute(sqlquery) % > < center > < font color="red" >< %=request("selectsource")% > < /font >< font color="#008000" size="5" >< b > 有以下文件可供阅览< /b >< /font > < hr size="5" > < table border="1" > < tr > < td width="200" align="center" > < b > 文件名 < /b > < /td > < /tr > < % do while not resultlist.eof % > < tr > < td valign=center width="200" >< %=resultlist ("文件名")% >< /a >< /td > < /tr > < % resultlist.movenext loop resultlist.close % > < /center > < /TABLE > < /body > < /html >
总结
用IE打开index.html或将文件发布到站点,进行相应的操作,即可实现对SQL Server数据库系统中《办公文件》数据表记录的追加和查询,至此系统目标已经达到。
以上就是用ASP语言实现对SQL SERVER 数据库的操作,希望获得更多这方面内容的童鞋可以阅读相关文章。