temp.asp

来自「一个用ASP编写的 关于火车售票的系统 写得还很详细的值得借鉴阿」· ASP 代码 · 共 29 行

ASP
29
字号
<%if session("password")<>"" then%>
<!-- #include file="inc/top.asp" -->
<!-- #include file="inc/adminmenu.asp" -->

<table width="768" height="25" align="center" cellpadding="0" cellspacing="0" class="unnamed_rld2">
<tr>
<td>
&nbsp;



<%
            dim num1
            dim rndnum
            Randomize
            Do While Len(rndnum)<4
            num1=CStr(Chr((57-48)*rnd+48))
            rndnum=rndnum&num1
            loop
            session("verifycode")=rndnum
%>
<%=session("verifycode")%>
</td>
</tr>
</table>


<!-- #include file="inc/copyright.asp" -->

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?