如何修改ASP网页标题为相应内容页的标题
代码如下,大家帮忙看看哪里出错了,现在所有页面都显示一个标题,我不知道该怎么修改,高手指点下怎么修改,谢谢了<%@LANGUAGE="VBSCRIPT"CODEPAGE=...
代码如下,大家帮忙看看哪里出错了,现在所有页面都显示一个标题,我不知道该怎么修改,高手指点下怎么修改,谢谢了
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<!--#include file="conn.asp"-->
<%
sql="select top 1 * from webset where lx='基本信息' order by id desc"
rs.open sql,conn,1,1
%>
<title><%=rs("title")%></title>
<%rs.close%>
<link href="css.css" rel="stylesheet" type="text/css">
<script language="JavaScript">
<!--
var flag=false;
function DrawImage(ImgD){
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>=231/196){
if(image.width>231){
ImgD.width=231;
ImgD.height=(image.height*231)/image.width;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt=image.width+"x"+image.height;
}
else{
if(image.height>196){
ImgD.height=196;
ImgD.width=(image.width*196)/image.height;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt=image.width+"x"+image.height;
}
}
}
//-->
</script>
</head> 展开
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<!--#include file="conn.asp"-->
<%
sql="select top 1 * from webset where lx='基本信息' order by id desc"
rs.open sql,conn,1,1
%>
<title><%=rs("title")%></title>
<%rs.close%>
<link href="css.css" rel="stylesheet" type="text/css">
<script language="JavaScript">
<!--
var flag=false;
function DrawImage(ImgD){
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
flag=true;
if(image.width/image.height>=231/196){
if(image.width>231){
ImgD.width=231;
ImgD.height=(image.height*231)/image.width;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt=image.width+"x"+image.height;
}
else{
if(image.height>196){
ImgD.height=196;
ImgD.width=(image.width*196)/image.height;
}else{
ImgD.width=image.width;
ImgD.height=image.height;
}
ImgD.alt=image.width+"x"+image.height;
}
}
}
//-->
</script>
</head> 展开
1个回答
展开全部
<%
sql="select top 1 * from webset where lx='基本信息' order by id desc"
rs.open sql,conn,1,1
%>
<title><%=rs("title")%></title>
<%rs.close%>
这个是查询数据库,获取网页标题title的,不想调用,就把上面几行直接改为:
<title>你要用的标题</title>
sql="select top 1 * from webset where lx='基本信息' order by id desc"
rs.open sql,conn,1,1
%>
<title><%=rs("title")%></title>
<%rs.close%>
这个是查询数据库,获取网页标题title的,不想调用,就把上面几行直接改为:
<title>你要用的标题</title>
更多追问追答
追问
自动标题怎么填写,就是内容页的自动标题
追答
什么叫自动标题?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询