📄 test.asp
字号:
<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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -