asp中如何调用文章标题
asp中如何调用文章标题让title显示为文章标题-网站名称这种形式不知道要如何写才能从数据库中调出来http://localhost/xnews.asp?newsid=...
asp中如何调用文章标题 让title显示为 文章标题-网站名称 这种形式
不知道要如何写才能从数据库中调出来
http://localhost/xnews.asp?newsid=495
文章标题 newsname
文章ID newsid
表是 alasea_nws
这是我的头部
<!--#include file="asoula2008/conn.asp" -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><%=rs("newsname")%>_网站名称</title>
<link href="images/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.STYLE1 {
font-family: Arial, Helvetica, sans-serif;
color: #221F1F;
}
-->
</style>
ASP小白 在帮别人改程序 搞定了追加分的 谢谢~
表名写错了 应该是表是 alasea_news 展开
不知道要如何写才能从数据库中调出来
http://localhost/xnews.asp?newsid=495
文章标题 newsname
文章ID newsid
表是 alasea_nws
这是我的头部
<!--#include file="asoula2008/conn.asp" -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><%=rs("newsname")%>_网站名称</title>
<link href="images/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.STYLE1 {
font-family: Arial, Helvetica, sans-serif;
color: #221F1F;
}
-->
</style>
ASP小白 在帮别人改程序 搞定了追加分的 谢谢~
表名写错了 应该是表是 alasea_news 展开
3个回答
展开全部
<!--#include file="asoula2008/conn.asp" -->
从这里读取数据库,并且将读取出来的数据赋值,如:
<%
dim newsname '给它定义一下,这是规范
set rs=...........
rs.open"........",conn,1,1
newsname=rs("newname") '自己看一下就知道这是什么意思了啊。呵呵
rs.close
set rs=nothing
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><%=newsname%>_网站名称</title>
<link href="images/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.STYLE1 {
font-family: Arial, Helvetica, sans-serif;
color: #221F1F;
}
-->
</style>
从这里读取数据库,并且将读取出来的数据赋值,如:
<%
dim newsname '给它定义一下,这是规范
set rs=...........
rs.open"........",conn,1,1
newsname=rs("newname") '自己看一下就知道这是什么意思了啊。呵呵
rs.close
set rs=nothing
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><%=newsname%>_网站名称</title>
<link href="images/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.STYLE1 {
font-family: Arial, Helvetica, sans-serif;
color: #221F1F;
}
-->
</style>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<!--#include file="asoula2008/conn.asp" -->
<%dim newsid
newsid=request.QueryString("newsid")
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from alasea_nws where newsid="&newsid,conn,1,1
newsname=rs("newsname")
rs.close
set rs=nothing
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><%=newsname%>_网站名称</title>
<link href="images/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.STYLE1 {
font-family: Arial, Helvetica, sans-serif;
color: #221F1F;
}
-->
</style>
</head>
<body>
</body>
</html>
<!--#include file="asoula2008/conn.asp" -->
<%dim newsid
newsid=request.QueryString("newsid")
set rs=server.CreateObject("adodb.recordset")
rs.open "select * from alasea_nws where newsid="&newsid,conn,1,1
newsname=rs("newsname")
rs.close
set rs=nothing
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title><%=newsname%>_网站名称</title>
<link href="images/style.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.STYLE1 {
font-family: Arial, Helvetica, sans-serif;
color: #221F1F;
}
-->
</style>
</head>
<body>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在读取<%=rs("newsname")%>之前增加一下内容
<%
set rs = conn.execute("select * from newsid="&request("newsid"))
%>
<%
set rs = conn.execute("select * from newsid="&request("newsid"))
%>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询