使用純粹的asp+語言制作的欄目管理(3)
發(fā)表時間:2023-08-11 來源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]http://www.asp888.net 豆腐技術(shù)站 呵呵,連續(xù)看了幾個特別復(fù)雜的程序,相信大的腦袋已經(jīng)和 豆腐 的腦袋差不多 變成了一個大大的。。好吧,最后寫個簡單簡單的程序,我們就算是 作個總...
http://www.asp888.net 豆腐技術(shù)站
呵呵,連續(xù)看了幾個特別復(fù)雜的程序,相信大的腦袋已經(jīng)和 豆腐 的腦袋差不多 變成了一個大大的。。
好吧,最后寫個簡單簡單的程序,我們就算是 作個總結(jié)吧!
我們在前面的程序中將我們的欄目的所有的 標題都已經(jīng)用分頁的方法顯示出來了,所以我們在這里做上
一個把欄目的內(nèi)容顯示出來的程序就可以了,這個程序很簡單,大家可以舒服的靠在椅子上來閱讀這篇文章
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>瀏覽文章__技術(shù)專欄__<%=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>