·您的位置: 首页 » 资源教程 » 编程开发 » ASP.NET » 使用纯粹的asp+语言制作的栏目管理(三)

使用纯粹的asp+语言制作的栏目管理(三)

类别: ASP.NET教程  评论数:0 总得分:0
http://www.asp888.net 豆腐技术站

呵呵,连续看了几个特别复杂的程序,相信大的脑袋已经和 豆腐 的脑袋差不多 变成了一个大大的。。
好吧,最后写个简单简单的程序,我们就算是 作个总结吧!
我们在前面的程序中将我们的栏目的所有的 标题都已经用分页的方法显示出来了,所以我们在这里做上
一个把栏目的内容显示出来的程序就可以了,这个程序很简单,大家可以舒服的靠在椅子上来阅读这篇文章
viewarticl.aspx:
<%@ Import Namespace=\"System.Data\" %>
<%@ Import Namespace=\"System.Data.SQL\" %>
<script runat=server language=\"C#\">
protected void Page_Load(Object Src, EventArgs E){
int intRecID=Request.QueryString[\"id\"].ToInt16();
SQLDataReader dbRead;
SQLCommand dbComm;
String strSQL;
String strConn;
SQLConnection conn;
Hashtable Cfg=new Hashtable();
Cfg = (Hashtable)Context.GetConfig(\"appsettings\");
strConn=Cfg[\"Conn\"].ToString();
conn = new SQLConnection(strConn);
strSQL=\"select * from lanmu where id=\" + intRecID.ToString();
dbComm=new SQLCommand(strSQL,conn);
dbComm.ActiveConnection.Open();
dbComm.Execute(out dbRead);
if(!dbRead.Read()){
showmsg.Text=\"对不起,没有编号为\" + intRecID.ToString() + \"的文章\";
return;
}
//HttpServerUtility server=new HttpServerUtility();
showmsg.Text=Server.HtmlEncode(dbRead[\"content\"].ToString());
}
</script>
<html>
<head>
<title>浏览文章__技术专栏__<%=sqlRead(\"title\")%></title>
<%=GrabPage(\"/inc/head.inc\")%>
<link rel=\"stylesheet\" type=\"text/css\" href=\"/doufu.css\">
</head>
<body>
<asp:Label id=showmsg runat=server />
</body>
</html>

-= 资 源 教 程 =-
文 章 搜 索
关键词:
类型:
范围:

纯粹空间 softpure.com
Copyright © 2006-2012 暖阳制作 版权所有
承接程序设计 网页设计
QQ: 15242663 (隐身在线 拒绝闲聊)  Email: faisun@sina.com

 纯粹空间 - 韩国酷站|酷站欣赏|教程大全|资源下载|免费博客|美女壁纸|设计素材|技术论坛  

百度搜索 谷歌搜索 Alexa搜索 | 粤ICP备19116064号-1