test.asp
来自「Vc.Net入门与提高源码」· ASP 代码 · 共 18 行
ASP
18 行
<HTML>
<BODY>
<P>Please draw your bitmap using the following checkboxes and click on update to get the bitmap file</P>
<FORM method="post" action="GenBmp.asp">
<%
For y = 15 To 0 Step -1
For x = 0 To 15 %>
<INPUT type="checkbox" name="<%=x%>-<%=y%>" value="ON" <%If ((x Mod 2) Or (y Mod 2)) Then Response.Write "checked"%>>
<% Next
Response.Write "<BR>"
Next
%>
<BR>
Bitmap scale: <INPUT name="scale" value="10">
<INPUT type="submit" value="Generate bitmap">
</FORM>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?