|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我想详细了解ASP整站代码与PSP整站代码有什么优缺点,那个更好,更安全,更用容易维护,和管理。。。轮回比来在做一个实行、机房预定体系,最入手下手用的dreamwaver做的表格,很年夜,并且程序共有3000多行,很不便利办理和修正~
比来用轮回和判别做了一个输入表格,源程序以下
<tableborder="1"cellspacing="0"bordercolor="#006699">
<%
hang=41行变量
lie=9列变量
leirong=blie&" "&bhang
forbhang=1tohang
response.write("<tr>")
------------------------------------------------把持礼拜入手下手
forblie=1tolie
ifbhang=1then
ifblie=1then
response.Write("<tdcolspan=2width=108>第"&weektime&"周")
else
ifnotblie=9then
response.Write("<thwidth=93>")
xqnotemp=blie-1
ifxqnotemp=1thenxqno="一"
ifxqnotemp=2thenxqno="二"
ifxqnotemp=3thenxqno="三"
ifxqnotemp=4thenxqno="四"
ifxqnotemp=5thenxqno="五"
ifxqnotemp=6thenxqno="六"
ifxqnotemp=7thenxqno="日"
response.Write("礼拜"&xqno)
response.write("</th>")
endif
endif
else
if((bhang+2)mod4)=0andblie=1then
response.Write("<tdrowspan=4>"&(bhang+2)/4&"大节")
response.Write("")
response.write("<td>")
response.write("实行称号")
response.write("</td>")
else
ifnotblie=9then
------------------------------把持实行称号、班级、任课教员内容入手下手
if(notblie=1)and((bhang+2)mod4=0)then
response.write("<tdrowspan=4>")
response.write("<table><tr>")
rs.open"select*fromlesson",conn,1,1
response.write(rs("day"))
rs.close
response.write("<td></td></tr></table>")
response.write(blie-1&" "&bhang)
response.write("</td>")
else
------------------------------显现第二实行称号、班级、任课教员入手下手
ifblie=1then
response.Write("<tdwidth=63algin="&"center"&">")
ifbhangmod3=0then
response.write("<spanstyle=line-height:2;line-width:20;vertical-align:top><fontstyle=font-size:9pt>班级</font></span>")
elseifbhangmod4=0then
response.write("任课教员")
else
response.write("人数")
endif
response.Write("</td>")
endif
------------------------------显现第二实行称号、班级、任课教员停止
endif
------------------------------把持实行称号、班级、任课教员内容停止
endif
endif
endif
next
---------------------------------------------------把持礼拜停止
response.write("</tr>")
next
%>
</table>
最终效果
单位格内的数字经由过程两个数字来定位,以数字为查询前提,便可从数据库中查询,并显现出来!
</p>因为现在数据库都使用标准的SQL语言对数据库进行管理,所以如果是标准SQL语言,两者基本上都可以通用的。SQLServer还有更多的扩展,可以用存储过程,数据库大小无极限限制。 |
|