海外邮件中继,海外退信中继,美国高速VPS,不限流量VPN,邮局维护和管理,邮件网关,EMOS邮件中继,POSTFIX邮件中继,Winwebmail邮件中继,Winmail邮件中继,DBMail邮件中继,JDMail邮件中继,Exchange邮件中继,MDaemon邮件中继 淘宝店:http://shantan.taobao.com 云邮科技官网:www.yunrelay.com
【字体设置:大 中 小】
假如有下面的表现,是使用response.write方式写的:
Response.Write("<form name=""Info"" action=""admin.asp?action=setting"" method=""post""><td bgcolor=""#FFFFFF"" align=""left"" height=""48"">禁止注册:<input name=""reglock"" type=""checkbox"" id=""reglock"" value=""1""><input type=""submit"" value="" 确定 ""></td></form>")
这时要假如一个条件判断,如果数据库中禁止注册选择“是”则选择,可以使用一下两种方式:
<%
Dim isChecked ‘定义一下变量
if rs("lock")=True then
isChecked = " checked"
else
isChecked = ""
end if
Response.Write ("<form name=""Info"" action=""admin.asp?action=setting"" method=""post""><td bgcolor=""#FFFFFF"" align=""left"" height=""48"">禁止注册:<input name=""reglock"" type=""checkbox"" id=""reglock"" value=""1"" "& isChecked &"><input type=""submit"" value="" 确定 ""></td></form>")
%>
这思路非常的简单明了,写起来也很容易,我刚试的时候出现不了效果,原因是没有定义变量,因为我的程序中使用了强制定义变量的功能。
另外一种写法就是将上面的内容分割写入的方法,也是不错的:
Response.Write("<form name=""Info"" action=""admin.asp?action=setting"" method=""post""><td bgcolor=""#FFFFFF"" align=""left"" height=""48"">禁止注册:<input name=""reglock"" type=""checkbox"" id=""reglock"" value=""1"" ")
if rs("lock")=True then response.write("Checked")
response.write("><input type=""submit"" value="" 确定 ""></td></form>")
发表评论 - 不要忘了输入验证码哦!