ASP怎么读取数据库内容的标题作为网页标题?

文章页面代码是:<!--#includefile="include/conn.asp"--><!DOCTYPEhtml><html><head><metahttp-equ... 文章页面代码是:
<!--#include file="include/conn.asp"--><!DOCTYPE html><html><head><meta http-equiv="Content-Type" content="text/html; charset=gb2312" /><title>淄博友利机电设备有限公司</title><link href="css.css" rel="stylesheet" type="text/css"><script type="text/javascript" src="Carlder.js"></script></head><body><!--#include file="inc_header.asp"--><div id="Bodyer"> <div class="wrp_c"> <!--#include file="inc_left.asp"--> <div id="right"> <div class="right-t">新闻动态</div> <div class="right-c"> <div id="showContent"> <table width="92%" align="center" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top" height="500"><% if request("nlt")="" then call news(request("None"),request("Ntwo")) else call shownews(request("nlt")) end if %></td> </tr> </table> </div> </div> </div> </div></div><!--#include file="inc_footer.asp"--></body></html>是这个
展开
 我来答
huangshifu
2015-09-02 · TA获得超过1385个赞
知道小有建树答主
回答量:504
采纳率:0%
帮助的人:274万
展开全部
是用id传过来的吗?也就是News.asp?showid=XXX的格式,如果是的话,在页面的最上面把id的值拿到,然后上数据库里面把这个ID对应的title再取出来就OK了,是这个逻辑,你会写吗?
<%
dim showid
showid = request.querystring("showid")

'判断showid
If showid = "" Or Not IsNumeric(showid) Then
Response.write "<script>alert('非法操作');history.back();</script>"
Response.End
End If

Dim articleTitle
set rs = server.createobject("adodb.recordset")
sql = "select * from jt_News where id="&showid
rs.open sql,conn,1,1

If rs.eof Then
rs.close
Set rs = Nothing
conn.close
Set conn = nothing
Response.write "<script>alert('非法操作');history.back();</script>"
Response.End
Else
articleTitle = rs("Title")
rs.close
Set rs = Nothing
End if
%>
取出来之后直接把title替换了就行
<title><%=articleTitle%></title>
小石头excel教学
2015-09-02 · 一起加油,生活不会辜负每一个努力的人。
小石头excel教学
采纳数:151 获赞数:399

向TA提问 私信TA
展开全部
修改<title>淄博友利机电设备有限公司</title>的内容即可。
追问
能别这样水 经验么?
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式