直播中
作者:沙灘小子
上一節(jié)已經(jīng)介紹了關(guān)于文章管理的數(shù)據(jù)庫連接,本篇將講述文章的在線添加,當(dāng)你找到了一篇很好的資料,并且想盡快放到你的網(wǎng)站上面,如果你首先想到的是快點做好一個頁面,并且趕快用FTP把它上傳,那么在這里這些都顯得沒有必要了,在這里你可以通過進入管理頁面的添加文章,然后直接把文章粘貼復(fù)制過來就可以了,這也是本篇將要講述的重點--文章的在線添加。
另外通過下面的一步步講解,相信你可以領(lǐng)會到其中的意義,在這里對HTM代碼將不做講述。
新建一ASP文件addarticle.asp,其具體代碼如下:
"插入數(shù)據(jù)庫連接打開文件
<!--#include file="conn.asp"-->
"這段程序以后將在驗證管理員信息時講述,主要是用來防止別人不通過密碼驗證就可以直接添加文章的
<%
if request.cookies("adminok")="" then
response.redirect "login.asp"
end if
%>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta name="GENERATOR" content="Microsoft FrontPage 3.0">
<title>創(chuàng)建文章</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<form method="POST" action="savearticle.asp">
<div align="center"><center><table border="1" cellspacing="0" width="80%" bordercolorlight="#000000" bordercolordark="#FFFFFF" cellpadding="0">
<tr>
<td width="100%" bgcolor="#D0D0D0" height="20"><div align="center"><center><p><b>添 加 文 章</b></td>
</tr>
<tr align="center">
<td width="100%"><table border="0" cellspacing="1" width="100%">
<tr>
<td width="15%" align="right" height="30"><b>文章標(biāo)題:</b></td>
<td width="85%" height="30">
"這里輸入文章標(biāo)題信息
<input type="text" name="txttitle" size="70" class="smallinput" maxlength="100">
</td>
</tr>
<tr>
<td width="15%" align="right" height="30"><b>文章欄目:</b></td>
<td width="85%" height="30">
"利用recordset對象和select打開指定的記錄集
<select class="smallSel" name="typeid" size="1">
<%
dim rs,sql,sel
set rs=server.createobject("adodb.recordset")
sql="select * from type"
"設(shè)定打開方式為只讀
rs.open sql,conn,1,1
"顯示該記錄集中所有的內(nèi)容,在這里也就是在下拉菜單中顯示文章所屬欄目的名稱,添加文章的時候要在這里選擇其欄目的名稱
do while not rs.eof
sel="selected"
response.write "<option " & sel & " value='"+CStr(rs("typeID"))+"' name=typeid>"+rs("type")+"</option>"+chr(13)+chr(10)
"顯示了一個記錄了以后自動移到下一個記錄
rs.movenext
loop
"關(guān)閉打開的記錄集和數(shù)據(jù)庫連接
rs.close
set rs=nothing
conn.close
%>
</select></td>
</tr>
<tr>
<td width="15%" align="right" valign="top"><b>文章內(nèi)容:</b></td>
<td width="85%">
"文章內(nèi)容添加區(qū)
<textarea rows="15" name="txtcontent" cols="70" class="smallarea"></textarea></td>
</tr>
<tr>
<td width="15%" align="right" valign="top" height="20"></td>
<td width="85%"></td>
</tr>
</table>
</td>
</tr>
</table>
</center></div><div align="center"><center><p><input type="submit" value=" 添 加 "
name="cmdok" class="buttonface"> <input type="reset" value=" 清 除 "
name="cmdcancel" class="buttonface"></p>
</center></div>
</form>
</body>
</html>
至此,我們的文章添加頁面就完成了,添加了文章了以后當(dāng)然還要保存才行啦,所以下節(jié)將詳細(xì)介紹文章保存的詳細(xì)過程,大家也可以了解在ASP代碼中是怎樣進行數(shù)據(jù)庫操作的。
轉(zhuǎn)載請注明出處http://asky.on.net.cn