|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
缺点:安全性不是太差了,还行,只要你充分利用系统自带的工具;唯一缺点就是执行效率慢,如何进行网站优化以后,效果会比较好。access|数据|数据库----本文侧重先容经由过程IIS4.0服务办理中ASP剧本言语完成会见Access数据库,至于怎样创立体系DSN这里一带而过,有乐趣的读者本人能够往试一试。
----起首,创立一个Access数据库,个中含有姓名、部门称号、部门用度的字段名。
----其次,在安装IIS4.0的WWW服务器上,翻开ODBC,创立体系DSN,数据源名ABC,拔取对应的Access数据库,创建好后就能够入手下手写ASP程序了。
----依据必要我们想对Access数据库中的部门称号依照分歧的部门举行查询,依照用度金额的巨细举行查询。
----依照部门称号查询创立shujuku5.asp,ASP的程序源代码以下:
<html>
<body>
<%
SetConnect=Server.CreateObject(“ADODB.Connection")
Connect.Open“abc"
s=Request(“menu1")
sql=“select*fromsheet1where
部门称号=”&“‘"&s&“"
Setrs=Connect.Execute(sql)
%>
<tableborder=1cellspacing=1>
<trbgcolor=“#00ffff">
<%Fori=0TO7%>
<tdsize=1><b><%=rs(i).Name%></b>
<td><%Next%>
<tr>
<%DoWhileNotrs.EOF%>
<tr>
<%Fori=0TO7%>
<tdsize=1><%=rs(i)%><td>
<%Next%>
</tr>
<%rs.MoveNext
Loop
%>
<%
rs.Close
Connect.Close
%>
</table>
</body>
</html>
----依照用度金额创立shujuku4.asp,ASP源代码程序以下:
<html>
<body>
<%
SetConnect=Server.CreateObject(“ADODB.Connection")
Connect.Open“ABC"
r=Request(“textfield")
s=Request(“menu2")
ifs=“年夜于"then
sql=“select*fromsheet1where用度金额>"&r&“"
elseifs=“小于"then
sql=“select*fromsheet1where用度金额<"&r&“"
elseifs=“即是"then
sql=“select*fromsheet1where用度金额="&r&“"
elseifs=“年夜于即是"then
sql=“select*fromsheet1where用度金额>="&r&“"
elseifs=“小于即是"then
sql=“select*fromsheet1where用度金额<="&r&“"
endif
Setrs=Connect.Execute(sql)
%>
<tableborder=1cellspacing=5>
<trbgcolor=“#00ffff">
<%Fori=0TO7%>
<td><b><fontsize=“2"><%=rs(i).Name%>
</font></b>
<td><%Next%>
<tr>
<%DoWhileNotrs.EOF%>
<tr>
<%Fori=0TO7%>
<tdsize=8><%=rs(i)%><td>
<%Next%>
</tr>
<%rs.MoveNext
Loop
%>
<%
rs.Close
Connect.Close
%>
</table>
</body>
</html>
----创立好这两个ASP文件拷贝到IIS4.0的假造目次WWWROOT下,然后再用FRONTPAGE、Dreamweaver编写一个Html程序bumenfeiyong.html,其源代码程序以下:
<html>
<head>
<title>UntitledDocument</title>
<metahttp-equiv=“Content-
Type"content=“text/html;charset=gb2312">
</head>
<bodybgcolor=“#FFFFFF">
<divalign=“center">
<p><b><fontcolor=“#CC3333"size=“5">
部门用度查询</font></b></p>
<p><imgsrc=http://www.163design.net/a/s/“trees.gif"width=“600"height=“17">
</p>
<tablewidth=“100%"border=“1"cellspacing=“10"
bordercolor=“#FFFFFF">
<trbordercolor=“#FFCCCC">
<tdheight=“9">
<formmethod=“post"action=
“http://192.1.168.100/shujuku5.asp">
<selectname=“menu1">
<optionselected>按部门查询</option>
<option>总司理室</option>
<option>财政部</option>
<option>市场部</option>
<option>物配部</option>
<option>发卖部</option>
<option>办公室</option>
</select>
<inputtype=“submit"name=“Submit"value=“提交">
</form>
</td>
</tr>
<trbordercolor=“#FFCCCC">
<tdheight=“15">
<formmethod=“post"action=
“http://192.1.168.100/shujuku4.asp">
<selectname=“menu2">
<optionselected>用度金额</option>
<option>年夜于</option>
<option>年夜于即是</option>
<option>即是</option>
<option>小于即是</option>
<option>小于</option>
</select>
<inputtype=“text"name=“textfield"size=“12">
<inputtype=“submit"name=“Submit2"value=“提交">
</form>
</td>
</tr>
<trbordercolor=“#FFCCCC">
<td>&nbsp;</td>
</tr>
<trbordercolor=“#FFCCCC">
<td>&nbsp;</td>
</tr>
<trbordercolor=“#FFCCCC">
<td>&nbsp;</td>
</tr>
<trbordercolor=“#FFCCCC">
<td>&nbsp;</td>
</tr>
<trbo</p>ASP脚本是采用明文(plaintext)方式来编写的。 |
|