错误前代码:
<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/
分享到:
相关推荐
- **缺少 'Loop' (0x800A03FB)**:循环结构不完整。 - **缺少 'Next' (0x800A03FC)**:循环结束标志缺失。 - **缺少 'Case' (0x800A03FD)**:选择结构语法错误。 - **缺少 'Select' (0x800A03FE)**:选择结构起始...
Microsoft VBScript 编译器错误 (0x800A040E) --> 缺少loop Microsoft VBScript 编译器错误 (0x800A03EA) --> 缺少if或end if Microsoft VBScript 编译器错误 (0x800A03EE) --> 语句未结束(缺少")") Microsoft ...
在VBScript程序中,如果缺少Loop语句,将会抛出该错误代码。开发者需要添加缺少的Loop语句,以确保程序正确执行。 17. Microsoft VBScript 语法错误(0x800A03FC):缺少 'Next' 在VBScript程序中,如果缺少...
- DO...LOOP循环中缺少LOOP关键字。 30. **代码1018:缺少"Wend"** - WHILE...WEND循环中缺少WEND关键字。 31. **代码1017:缺少"Then"** - IF语句中缺少THEN关键字。 32. **代码1016:缺少"Sub"** - Sub过程...
* 0x800A040E:缺少 loop * 0x800A03EA:缺少 if 或 endif * 0x800A03EE:语句未结束(缺少") * 0x800A03F6:if 语句出错(缺少 endif) * 0x800A03F9:if 语句缺少 then * 0x800A0411:dim 语句定义错误 * 0x800A...
’Loop’(0×800A03FB)** 和 **缺少?’Next’(0×800A03FC)**:`Do...Loop`或`For...Next`循环的结束标记未找到。 16. **缺少?’Case’(0×800A03FD)** 和 **缺少?’Select’(0×800A03FE)**:`Select Case`语句的...
1. **错误#128-D: loop is not reachable from preceding code** 这个警告表示程序中的循环无法从前面的代码中到达,通常是因为有一个无限循环(如`while(1)`)导致后续的代码实际上不会被执行。解决方法是检查并...
- **1019 - 需要 'Loop'**:缺少关键字 'Loop'。 - **1020 - 需要 'Next'**:缺少关键字 'Next'。 - **1050 - 需要 'Property'**:缺少关键字 'Property'。 - **1022 - 需要 'Select'**:缺少关键字 'Select'。 - **...
- **(0x800A040E)**:表示代码中缺少`Loop`关键字。 - **(0x800A03EA)**:表示代码中缺少`End If`。 - **(0x800A03EE)**:表示代码中缺少双引号。 - **(0x800A03F6)**:表示`If`语句中缺少`End If`。 - **(0x800A005...
13. `VBScript编译器错误 (0x800A040E)` - 缺少loop:循环结构不完整,可能漏掉了`Loop`关键字。 14. `VBScript编译器错误 (0x800A03EA)` - 缺少if或end if:条件语句if缺少对应的end if。 15. `VBScript编译器...
Do...Loop语句中缺少Loop关键字。 - **1020 - 需要“Next”** For...Next循环中缺少Next关键字。 - **1050 - 需要“Property”** 属性定义中缺少Property关键字。 - **1022 - 需要“Select”** Select Case...
在Do...Loop循环中,缺少“Loop”关键字。 ##### 17. 需要'Next'(1020800A03FC) 在For...Next循环中,缺少“Next”关键字。 ##### 18. 需要'Case'(1021800A03FD) 在Select Case语句中,若缺少“Case”关键字,...
- **MicrosoftVBScript*(0x800A03F2)** 至 **MicrosoftVBScript*(0x800A03FA)**:这些错误提示缺少关键的控制流关键字,如等于号('=')、If、To、End、Function、Sub、Then、Wend、Loop、Next等。这些关键字是...
6. **VBScript编译器错误** (0x800A040E, 0x800A03EA, 0x800A03EE, 0x800A03F6, 0x800A03F9, 0x800A0411): 缺少关键字或语句结束符。例如,`Loop`、`End If`、`)`、`Then`等。修复语法错误以解决问题。 7. **ADODB....
1. **0x800A040E**:`'loop' 语句缺少 'do'` - 这个错误意味着`Loop`关键字前没有对应的`Do`语句,确保`Do`和`Loop`成对出现。 2. **0x800A040F**:`无效的 'exit' 语句` - `Exit`语句可能使用不当,检查是否在合适...
6. **缺少语句结束**:如`MicrosoftVBscript编译器错误(0x800A040E)`提示缺少`Loop`,意味着循环结构不完整。 7. **缺少`If`或`EndIf`**:错误`MicrosoftVBscript编译器错误(0x800A03EA)`表明条件判断语句`If......
- **错误解释**:表示类缺少默认属性。 - **解决方案**:为类添加一个默认属性。 25. **Class or object types only allowed in types section** - **错误解释**:表示类或对象类型只能在类型部分定义。 - **...
1. **错误 #128-D: loop is not reachable from preceding code**:这表示循环语句后面的代码在当前条件下无法执行。通常是因为前面有一个无限循环`while(1){}`,导致后面的代码不会被执行。要解决这个问题,需要...
- **解释**:如果缺少必要的动态链接库文件,将会导致此错误。 43. **`Data type too large: exceeds 2GB`** - **中文说明**:数据类型太大:超过2GB。 - **解释**:当数据类型或数据大小超过了系统支持的最大...