|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
国内有些大的CRM厂商的ASP就写得不错.无论是概念还是它里面用JAVASCRIPT的能力.并不是说现在的程序员用了ASP.NET来写程序就可以说自己高档了 后面已为人人引见了文章的添加保留,接上去就应当讲讲文章的显示了。在这里,你加倍可以看出ASP的复杂易用性,仅仅是经由过程一个文件,就能够对数据库内的一切文章停止显示。它次要是经由过程从毗连前往的文章号(articleid)和栏目标信息(typeid)来翻开数据库中指定的纪录和指定显示所需求的内容。
以下是文章显示页面(list.asp)的具体代码和注解:
"翻开数据库毗连
<!--#include file="conn.asp"-->
<html>
<%
"界说变量
dim sql
dim rs
dim typename
dim typeid
dim rstype,typesql
"承受前往的栏目信息并翻开指定栏目纪录集type
typeid=request("typeid")
set rstype=server.createobject("adodb.recordset")
typesql="select * from type where typeID="&cstr(typeid)
rstype.open typesql,conn,1,1
"挪用指定栏目称号并将其信息指定给typename
typename=rstype("type")
"封闭纪录集
rstype.close
%>
<head>
<title>ASP动网前锋|http://asky.on.net.cn</title>
<link rel="stylesheet" href="style.CSS">
</head>
<body>
<div align="center"><center>
<table border="1" width="97%" cellspacing="0" cellpadding="0" bordercolorlight="#000000"
bordercolordark="#FFFFFF">
<tr>
<td width="100%" bgcolor="#D0D0D0"><p align="center">
"显示栏目信息
栏目:<%=typename&%>
<%
"翻开指定纪录集article,并经由过程前往的文章号id翻开指定文章号的相干内容,在这里显示了文章号,到场日期,阅读数,文章题目和文章内容
set rs=server.createobject("adodb.recordset")
sql="select * from artidle where articleid="&request("id")
rs.open sql,conn,1,1
%>
----文章编号:<%=rs("articleid")%>----到场日期:<%=rs("date")%>----阅读数:<%=rs("hits")%></td>
</tr>
<tr>
<td width="100%"><p align="right"><a href="javascript:self.close()">『封闭窗口』</a></td>
</tr>
<tr>
<td width="100%"><p align="center"><b><%=rs("title")%></b></td>
</tr>
<tr>
<td width="100%">
<blockquote>
<br>
<%=rs("content")%> <br>
<br>
<p align=center>
"这里是文章的EMAIL转发,经由过程一段sentemail法式来完成,上面将为人人引见
<form method=Post action='sentemail.asp?id=<%=rs("articleid")%>'>
<b>发送文章到邮箱</b><br>
<input type='text' name='email' maxlength=20 class=smallInput>
<input class=buttonface type='submit' value='发送' name='send'>
</form>
</blockquote>
</td>
</tr>
</table>
</center></div>
</body>
</html>
<%
"封闭纪录集和数据库毗连
rs.close
set rs=nothing
conn.close
set conn=nothing
%>
以上就是文章的显示法式,在这里以一段很少的代码就完成了从数据库挪用指定文章内容和显示的进程,信任到这里你更能体味到ASP的功用了,在本节中提到了使用ASP在线发送文章到信箱的法式,那末上面我将为人人引见关于文章转发邮箱功效! 转自:静态网制造指南 www.knowsky.comasp对于服务器的要求较高,一般的服务器如果访问量一大就垮了,不得不重启。 |
|