<INPUT name="name" value="your name pls" size="30"液好卜><p>
请输入您的密码:
<INPUT type="password" name="pwd" value="pwd" size="30"><P>
请选择性别:
<INPUT selected="selected" name="gender">男<INPUT selected="selected" name="gender">女<P>袜前
请选择兴趣:
<SELECT multiple size=2>
<OPTION value=“yundong” >运动
<OPTION value=“meishu” >美闹穗术
<OPTION value=“yinyue” >音乐
</FORM>
我花2小时直接在这篇回答中敲出一个HTML DIV+CSS首页的所有的代码(可下载)DW网页设计大作业成品,你可以替换相应素材以符合自己的题目~
双击打开index.html 即可在浏览器预览大拆,也可以直接将源码复制进Dreamweaver、困陆Hbuilder X、Editplus等网页设计软件内保存为Html此汪仿顷处就不多说了…
1.ASP网页编程<table width="80%" border="0" align="center" cellpadding="4" cellspacing="1" bgcolor="#3F69E9">
<tr>
<%
dim i'定义变量i
for i=1 to 50 '设置i初始值为1 结束值为50循环下面的td单元格
%>
<td align="center" bgcolor="#9ADAFC" onmouseout ="this.style.backgroundColor='#9ADAFC'" onmouseover ="this.style.backgroundColor='#EDF8FE'"><font size="-6" color="#FF0000"><%=i-1%></font></td>
<!--td里面的属性只是为了美观,所以也可以不写 font是设置字体的也可以不写-->
<%
if i mod 10=0 then'当i是磨喊大10的倍数时就换行
response.Write"</tr><tr>"
end if
next
%>
</tr>
</table>
2、IP地址
<%
realip = Request.ServerVariables("HTTP_X_FORWARDED_FOR")
proxy = Request.ServerVariables("REMOTE_ADDR")
if realip = "" then
zhenshiip = proxy
else
zhenshiip = realip
end if
if left(zhenshiip,6)="211.69" then'假如收到的ip地址瞎竖的前6位是“211.69”则显示下面的欢迎信息反之则提示非法
response.Write("<script>alert('欢迎光临!')window.location='渗磨想要到达的页面'</script>")
else
response.Write("<script>alert('非法用户!')window.history(-1)</script>")
end if
%>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)