|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
楼上说交互性不好,太牵强了吧。在微软提供的一套框架中,利用asp做网站,开发效率高,使用人数少,减少不必要的开销。交互性是互动方式,是有开发人员决定的。 上一节已引见了关于文章办理的数据库毗连,本篇将讲述文章的在线添加,当你找到了一篇很好的材料,而且想尽快放到你的网站下面,假如你起首想到的是快点做好一个页面,而且从速用FTP把它上传,那末在这里这些都显得没有需要了,在这里你可以经由过程进入办理页面的添加文章,然后直接把文章粘贴复制过去就能够了,这也是本篇将要讲述的重点--文章的在线添加。
别的经由过程上面的一步步解说,信任你可以体会到个中的意义,在这里对HTM代码将不做讲述。
新建一ASP文件addarticle.asp,其详细代码以下:
"拔出数据库毗连翻开文件
<!--#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>创立文章</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>文章题目:</b></td>
<td width="85%" height="30">
"这里输出文章题目信息
<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"
"设定翻开体例为只读
rs.open sql,conn,1,1
"显示该纪录集中一切的内容,在这里也就是鄙人拉菜单中显示文章所属栏目标称号,添加文章的时分要在这里选择其栏目标称号
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
"封闭翻开的纪录集和数据库毗连
rs.close
set rs=nothing
conn.close
%>
</select></td>
</tr>
<tr>
<td width="15%" align="right" valign="top"><b>文章内容:</b></td>
<td width="85%">
"文章内容添加区
<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>
至此,咱们的文章添加页面就完成了,添加了文章了今后固然还要保留才行啦,所以下节将具体引见文章保留的具体进程,人人也能够懂得在ASP代码中是如何停止数据库操作的。
Active Server Page技术为应用开发商提供了基于脚本的直观、快速、高效的应用开发手段,极大地提高了开发的效果。在讨论ASP的安全性问题之前,让我们来看看ASP是怎么工作的。 |
|