`

缺少LOOP错误

    博客分类:
  • ASP
SQL 
阅读更多
错误前代码:
<tr class='trquery1' id="tr_reason" style="display:none">
    <td width='211'>不占用配额的原因:</td>
    <td width='619' align="left">
        <select name='sel_reason' id="sel_reason">
            <option value='0'>请选择</option>
            <%
				dim sql_sel_reason
                sql_sel_reason="SELECT id, reason FROM t_no_quota_reason_config where deleted=0"
                set rs_sel_reason=db.execute(sql_sel_reason)
                while not rs_sel_reason.eof
            %>
                    option value="<%=rs_sel_reason("id")%> ><%rs_sel_reason("reason")%></option>
            <%
                    rs_sel_reason.movenext
                wend
                rs_sel_reason.close
            %>
        </select>
    </td>
</tr>

修复后代码[红色区域是修改的地方]:
<tr class='trquery1' id="tr_reason" style="display:none">
    <td width='211'>不占用配额的原因:</td>
    <td width='619' align="left">
        <select name='sel_reason' id="sel_reason">
            <option value='0'>请选择</option>
            <%
				dim sql_sel_reason
                sql_sel_reason="SELECT id, reason FROM t_no_quota_reason_config where deleted=0"
                set rs_sel_reason=db.execute(sql_sel_reason)
                while not rs_sel_reason.eof
                    [color=red]
                    response.Write "<option value="&rs_sel_reason("id")&" >"&rs_sel_reason("reason")&"</option>"
                    [/color]                    
                    rs_sel_reason.movenext
                wend
                rs_sel_reason.close
            %>
        </select>
    </td>
</tr>



参考:http://www.codeproject.com/
分享到:
评论

相关推荐

    ASP错误大全,常见的vbscript脚本错误

    - **缺少 'Loop' (0x800A03FB)**:循环结构不完整。 - **缺少 'Next' (0x800A03FC)**:循环结束标志缺失。 - **缺少 'Case' (0x800A03FD)**:选择结构语法错误。 - **缺少 'Select' (0x800A03FE)**:选择结构起始...

    asp运行错误编译对照

    Microsoft VBScript 编译器错误 (0x800A040E) --&gt; 缺少loop Microsoft VBScript 编译器错误 (0x800A03EA) --&gt; 缺少if或end if Microsoft VBScript 编译器错误 (0x800A03EE) --&gt; 语句未结束(缺少")") Microsoft ...

    ASP脚本错误代码---原因对照表

    在VBScript程序中,如果缺少Loop语句,将会抛出该错误代码。开发者需要添加缺少的Loop语句,以确保程序正确执行。 17. Microsoft VBScript 语法错误(0x800A03FC):缺少 'Next' 在VBScript程序中,如果缺少...

    金蝶K3错误代码查询

    - DO...LOOP循环中缺少LOOP关键字。 30. **代码1018:缺少"Wend"** - WHILE...WEND循环中缺少WEND关键字。 31. **代码1017:缺少"Then"** - IF语句中缺少THEN关键字。 32. **代码1016:缺少"Sub"** - Sub过程...

    Microsoft_VBScript_编译器错误代码含义大全

    * 0x800A040E:缺少 loop * 0x800A03EA:缺少 if 或 endif * 0x800A03EE:语句未结束(缺少") * 0x800A03F6:if 语句出错(缺少 endif) * 0x800A03F9:if 语句缺少 then * 0x800A0411:dim 语句定义错误 * 0x800A...

    asp代码编号错误大全

    ’Loop’(0×800A03FB)** 和 **缺少?’Next’(0×800A03FC)**:`Do...Loop`或`For...Next`循环的结束标记未找到。 16. **缺少?’Case’(0×800A03FD)** 和 **缺少?’Select’(0×800A03FE)**:`Select Case`语句的...

    keil错误集V1.0.pdf

    1. **错误#128-D: loop is not reachable from preceding code** 这个警告表示程序中的循环无法从前面的代码中到达,通常是因为有一个无限循环(如`while(1)`)导致后续的代码实际上不会被执行。解决方法是检查并...

    VBScript 运行时错误 编码含义

    - **1019 - 需要 'Loop'**:缺少关键字 'Loop'。 - **1020 - 需要 'Next'**:缺少关键字 'Next'。 - **1050 - 需要 'Property'**:缺少关键字 'Property'。 - **1022 - 需要 'Select'**:缺少关键字 'Select'。 - **...

    ASP 错误提示

    - **(0x800A040E)**:表示代码中缺少`Loop`关键字。 - **(0x800A03EA)**:表示代码中缺少`End If`。 - **(0x800A03EE)**:表示代码中缺少双引号。 - **(0x800A03F6)**:表示`If`语句中缺少`End If`。 - **(0x800A005...

    ASP错误代码详细分解

    13. `VBScript编译器错误 (0x800A040E)` - 缺少loop:循环结构不完整,可能漏掉了`Loop`关键字。 14. `VBScript编译器错误 (0x800A03EA)` - 缺少if或end if:条件语句if缺少对应的end if。 15. `VBScript编译器...

    VBScript错误代码及对应解释大全

    Do...Loop语句中缺少Loop关键字。 - **1020 - 需要“Next”** For...Next循环中缺少Next关键字。 - **1050 - 需要“Property”** 属性定义中缺少Property关键字。 - **1022 - 需要“Select”** Select Case...

    vb错误大全

    在Do...Loop循环中,缺少“Loop”关键字。 ##### 17. 需要'Next'(1020800A03FC) 在For...Next循环中,缺少“Next”关键字。 ##### 18. 需要'Case'(1021800A03FD) 在Select Case语句中,若缺少“Case”关键字,...

    ASP错误大全

    - **MicrosoftVBScript*(0x800A03F2)** 至 **MicrosoftVBScript*(0x800A03FA)**:这些错误提示缺少关键的控制流关键字,如等于号('=')、If、To、End、Function、Sub、Then、Wend、Loop、Next等。这些关键字是...

    asp程序错误详细说明例表

    6. **VBScript编译器错误** (0x800A040E, 0x800A03EA, 0x800A03EE, 0x800A03F6, 0x800A03F9, 0x800A0411): 缺少关键字或语句结束符。例如,`Loop`、`End If`、`)`、`Then`等。修复语法错误以解决问题。 7. **ADODB....

    VBscript常见错误归纳

    1. **0x800A040E**:`'loop' 语句缺少 'do'` - 这个错误意味着`Loop`关键字前没有对应的`Do`语句,确保`Do`和`Loop`成对出现。 2. **0x800A040F**:`无效的 'exit' 语句` - `Exit`语句可能使用不当,检查是否在合适...

    Microsoft VBScript 编译器错误 错误原因 代码大全

    6. **缺少语句结束**:如`MicrosoftVBscript编译器错误(0x800A040E)`提示缺少`Loop`,意味着循环结构不完整。 7. **缺少`If`或`EndIf`**:错误`MicrosoftVBscript编译器错误(0x800A03EA)`表明条件判断语句`If......

    delphi编译错误对照表

    - **错误解释**:表示类缺少默认属性。 - **解决方案**:为类添加一个默认属性。 25. **Class or object types only allowed in types section** - **错误解释**:表示类或对象类型只能在类型部分定义。 - **...

    开发板cortex\keil错误集.doc

    1. **错误 #128-D: loop is not reachable from preceding code**:这表示循环语句后面的代码在当前条件下无法执行。通常是因为前面有一个无限循环`while(1){}`,导致后面的代码不会被执行。要解决这个问题,需要...

    Delphi错误提示中英文对照

    - **解释**:如果缺少必要的动态链接库文件,将会导致此错误。 43. **`Data type too large: exceeds 2GB`** - **中文说明**:数据类型太大:超过2GB。 - **解释**:当数据类型或数据大小超过了系统支持的最大...

Global site tag (gtag.js) - Google Analytics