注册 登录
编程论坛 ASP技术论坛

如何讓這代碼碼變成灰色不可修改?

bxyl 发布于 2007-12-01 11:05, 834 次点击
<input name="UserSex" type="radio" value="1" <%if UserSex=1 then response.Write "Checked"%>/>1<input type="radio" name="UserSex" value="0" <%if UserSex=0 then response.Write "Checked"%>/>2<input type="radio" name="UserSex" value="2" <%if UserSex=2 then response.Write "Checked"%>/>3
2 回复
#2
bxyl2007-12-01 11:06
請會的朋友幫個忙!謝謝!
#3
madpbpl2007-12-01 13:01
<input name="UserSex" type="radio" value="1" <%if UserSex=1 then response.Write "Checked"%> disabled="disabled">1
<input type="radio" name="UserSex" value="0" <%if UserSex=0 then response.Write "Checked"%> disabled="disabled">2
<input type="radio" name="UserSex" value="2" <%if UserSex=2 then response.Write "Checked"%> disabled="disabled">3
1