|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
楼上说交互性不好,太牵强了吧。在微软提供的一套框架中,利用asp做网站,开发效率高,使用人数少,减少不必要的开销。交互性是互动方式,是有开发人员决定的。ASP页面
作者:青苹果电脑事情室本文点击次数:351
这个例子中的第一站是ASP页。这个ASP页用ADO与Northwind数据库毗连。为了坚持优秀的编码习气,我
利用了OptionExplicit并明白地声了然一切变量。这个ASP页的第一个草稿利用了内联代码。
<%@LANGUAGE=VBScript%>
<%
ExampleofInlinecode
OptionExplicit
Declarevariables
DimoConn
DimoRS
DimConnectionString
Dimx
ConnectionString="DSN=Northwind;"
SetoConn=Server.CreateObject("ADODB.Connection")
oConn.OpenConnectionString
SetoRS=Server.CreateObject("ADODB.Recordset")
Setvariables
oRS.ActiveConnection=oConn
oRS.Source="Select*fromProducts"
oRS.Open
%>
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=windows-1252">
<title>NewPage1</title>
</head>
<body>
<h1>Products</h1>
<tablecellspacing="2"cellpadding="5">
<trbgcolor="#FF6666">
<th>ProductName</th>
<th>QuantityPerUnitr</th>
<th>Price</th>
</tr>
<%
DountiloRS.EOF
Ifx=1then
x=0
%>
<trbgcolor="#ffcccc">
<%else%>
<tr>
<%
x=1
endif
%>
<td><%=oRS("ProductName")%></td>
<td><%=oRS("QuantityPerUnit")%></td>
<td><%=oRS("UnitPrice")%></td>
</tr>
<%
oRS.MoveNext
Loop
%>
</table>
</body>
</html>
<%
Destroyobjects
SetoRS=Nothing
SetoConn=Nothing
%>
</p>强大的可扩展性。ASP具有强大的扩展性,可以实现与多种网络、硬件设备的连接:通过专用的通讯线路远程接入企业;通过远程拨号服务器为远程拨号客户提供服务;通过WAP为移动电话互联网客户服务。 |
|