推荐:解析ASP检查网站链接是否正常的函数% FunctionurlChk(sUrl) onerrorresumenext SetxmlHttp=Server.CreateObject(Microsoft.XMLHTTP) xmlHttp.openGET,sUrl,false xmlHttp.send ifxmlHttp.Status200then urlChk=false else urlChk=true endif EndFunction sUrl=http://www.code-123.com ifu
用ASP实现搜索引擎的功能是一件很方便的事,可是,如何实现类似3721的智能搜索呢?比如,当在搜索条件框内输入“中国人民”时,自动从中提取“中国”、“人民”等关键字并在数据库内进行搜索。看完本文后,你就可以发现,这个功能实现起来竟然是如此的简单。 <!-- Search.asp --> <form name="frm_Search" method="get" action="Search.asp"> 请输入关键字: <input type="text" name="key" size="10"> <input type="submit" value="搜索"> </form> |
<% Dim strProvider,CNN strProvider="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" strProvider=strProvider & Server.MapPath("/") & "/data/db_Sample.mdb" ’假设数据库存放在主页根目录下的data目录下 Set CNN = Server.CreateObject("ADODB.connection") CNN.Open strProvider 打开数据库连接 %> |
<font color="#FF0000">未找到任何结果!!!</font> <% Else %> |
<% While Not RST.EOF 遍历整个记录集,显示搜索到的信息并设置链接 %> <!-- 此处可设为你所需要的链接目标 --> <font style="font: 12pt 宋体"><a href="info.asp?ID=<%= RST("ID") %>" target="_blank"><%= RST("U_Name") %></a></font> <!-- 显示部分详细内容 --> <font style="font: 9pt 宋体"><%= Left(RST("U_Info"),150) %></font><p> <% RST.MoveNext Wend RST.Close Set RST=Nothing End If End If %> |
分享:ASP教程之asp制作常见flash新闻图片轮换代码这是一个正常的网页文件 html head metahttp-equiv=Content-Typecontent=text/html;charset=gb2312/ title 新闻图片轮换 /title /head body !--#Includefile=diaoyong.asp-- /body /html 任何网页只要调用下面这个文件(diaoyong.asp)就可以了,所用f
新闻热点
疑难解答