根据数据库的值显示单选按钮
<tdheight="25"colspan="3"><inputtype="radio"name="jieguo"id="radio"value="正常"<%if"&rs...
<td height="25" colspan="3">
<input type="radio" name="jieguo" id="radio" value="正常"
<%
if "&rs("jieguo")&"="正常" then response.Write("checked") end if %> />正常
<input type="radio" name="jieguo" id="jieguo" value="不正常"
<%
if "&rs("jieguo")&"="不正常" then response.Write("checked") end if %> />不正常 </td>
报错,总是提示
Microsoft VBScript 编译器错误 '800a03f9'
缺少 'Then' 展开
<input type="radio" name="jieguo" id="radio" value="正常"
<%
if "&rs("jieguo")&"="正常" then response.Write("checked") end if %> />正常
<input type="radio" name="jieguo" id="jieguo" value="不正常"
<%
if "&rs("jieguo")&"="不正常" then response.Write("checked") end if %> />不正常 </td>
报错,总是提示
Microsoft VBScript 编译器错误 '800a03f9'
缺少 'Then' 展开
2个回答
展开全部
<td height="25" colspan="3">
<input type="radio" name="jieguo" id="radio" value="正常"
<%
if rs("jieguo")="正常" then response.Write("checked") %> />正常
<input type="radio" name="jieguo" id="jieguo" value="不正常"
<%
if rs("jieguo")="不正常" then response.Write("checked") %> />不正常 </td>
<input type="radio" name="jieguo" id="radio" value="正常"
<%
if rs("jieguo")="正常" then response.Write("checked") %> />正常
<input type="radio" name="jieguo" id="jieguo" value="不正常"
<%
if rs("jieguo")="不正常" then response.Write("checked") %> />不正常 </td>
展开全部
IF "..."jieguo"..."="正常" then ... end if
语法错误。
正确的代码:
<input type="radio" name="jieguo" id="radio" value="正常"
<%
if rs("jieguo")="正常" then response.Write("checked") end if %> />正常
<input type="radio" name="jieguo" id="jieguo" value="不正常"
<%
if rs("jieguo")="不正常" then response.Write("checked") end if %> />不正常
%>
---------------------------------------------------
语法错误。
正确的代码:
<input type="radio" name="jieguo" id="radio" value="正常"
<%
if rs("jieguo")="正常" then response.Write("checked") end if %> />正常
<input type="radio" name="jieguo" id="jieguo" value="不正常"
<%
if rs("jieguo")="不正常" then response.Write("checked") end if %> />不正常
%>
---------------------------------------------------
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询