欢迎来到天天文库
浏览记录
ID:34721726
大小:67.18 KB
页数:4页
时间:2019-03-10
《asp第八节sql语句中select语句的使用》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、ASP第八节SQL语句中select语句的使用一安装屏幕录像专家二.查询语句前还是在access先建一个数据库:Select语句的使用的代码如下:<%setrs=server.CreateObject("adodb.recordset")sql="select*fromstudentorderbystu_name"rs.opensql,conn,1,1fori=1tors.recordcountresponse.Write(i&"."&rs("stu_name")&"")rs.movenextnext%>二.关键字
2、搜索页面8_2.asp,其页面如下所示:关键字页面代码如下:请输入要搜索的关键字:functioncheck(){if(document.form1.gjz.value
3、==""){alert("关键字不可为空");document.form1.gjz.focus();returnfalse;}}三.建立网页和数据库的联系:conn.asp<%setconn=server.CreateObject("adodb.connection")找到数据库所在的连接对象sql="provider=microsoft.jet.oledb.4.0;datasource="&server.MapPath("sjk#.mdb")指令的功能找到要连接的数据库conn.opensql%>执行上面的指令四.8_2pd.asp页面代码如下:<%tt=request.Form("gjz")setrs=server.CreateObject("adodb.recordset")sql="select*fromstudentwherestu_namelike'%"&tt&"%'"模糊查询:select*from表名where字段名like‘%“&变量名&”%’rs.opensql,conn,1,1jls=rs.recordcount%>你要搜索"<%=tt%>"的记录,一共<%=jls%>条<%ifjls=0then
5、response.Write("暂无记录")elsefori=1tors.recordcountjg=replace(rs("stu_name"),tt,""&tt&"")dz=replace(rs("stu_add"),tt,""&tt&"")搜索时关键字描红:Replace(要描红的字符串,要替换的文字,替换后的文字样式)response.Write(i&"."&jg&""&dz&"")rs.movenextnextendif%>其效果如下:
此文档下载收益归作者所有