asp问题-单选按钮的自动选择
xb是从数据库里面读出来的性别,以下会提示MicrosoftVBScript编译器错误'800a0409'未结束的字符串常量,如果去掉其中的if语句就不会出错,请指教是什...
xb是从数据库里面读出来的性别,以下会提示Microsoft VBScript 编译器错误 '800a0409'
未结束的字符串常量
,如果去掉其中的if语句就不会出错,请指教是什么原因?
<INPUT type="radio" name="xb" value="男" <%if xb="男" then%>checked="checked"<%end if%>>
男
<INPUT type="radio" name="xb" value="女" <%if xb="女" then%>checked="checked"<%end if%>>
女
或者把<%if xb="男" then%>checked="checked"<%end if%>改成<%if xb="123" then%>checked="checked"<%end if%>就不会提示:Microsoft VBScript 编译器错误 '800a0409'
未结束的字符串常量 展开
未结束的字符串常量
,如果去掉其中的if语句就不会出错,请指教是什么原因?
<INPUT type="radio" name="xb" value="男" <%if xb="男" then%>checked="checked"<%end if%>>
男
<INPUT type="radio" name="xb" value="女" <%if xb="女" then%>checked="checked"<%end if%>>
女
或者把<%if xb="男" then%>checked="checked"<%end if%>改成<%if xb="123" then%>checked="checked"<%end if%>就不会提示:Microsoft VBScript 编译器错误 '800a0409'
未结束的字符串常量 展开
3个回答
展开全部
<%
Dim xb
xb = "女"%>
<INPUT type="radio" name="xb" value="男" <%if xb="男" then%>checked="checked"<%end if%>>
男
<INPUT type="radio" name="xb" value="女" <%if xb="女" then%>checked="checked"<%end if%>>
女
上面这段代码测试正常,检查xb的值是否正确
用response.write(xb)输出一下看看
Dim xb
xb = "女"%>
<INPUT type="radio" name="xb" value="男" <%if xb="男" then%>checked="checked"<%end if%>>
男
<INPUT type="radio" name="xb" value="女" <%if xb="女" then%>checked="checked"<%end if%>>
女
上面这段代码测试正常,检查xb的值是否正确
用response.write(xb)输出一下看看
展开全部
正确写法:
男
<input type="radio" name="radio" id="radio" value="radio" <%if xb="男" then response.write"checked"%>>
女
<input type="radio" name="radio" id="radio2" value="radio"<%if xb="女" then response.write"checked" %>>
男
<input type="radio" name="radio" id="radio" value="radio" <%if xb="男" then response.write"checked"%>>
女
<input type="radio" name="radio" id="radio2" value="radio"<%if xb="女" then response.write"checked" %>>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
标准写法如下:
<INPUT type="radio" name="xb" value="男" <%if xb="男" then%>checked<%end if%>>
男
<INPUT type="radio" name="xb" value="女" <%if xb="女" then%>checked<%end if%>>
女
<INPUT type="radio" name="xb" value="男" <%if xb="男" then%>checked<%end if%>>
男
<INPUT type="radio" name="xb" value="女" <%if xb="女" then%>checked<%end if%>>
女
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询