还是asp获取地址栏字段的语句
现页面地址www.xxx.com/aa.asp?id=456
在下面这段代码中我想显示456 最后执行把456提交到数据库里,提交数据库的语句就不用写了我写好了。定义:feilei
<tr borderColor=#333333 bgColor=#111111>
<td width="100"><div align="center"><font color="red">*</font>分类</div></td>
<td>
<input name="fenlei" type="hidden" id="fenlei" value="" /> 所属分类
</td>
</tr>
答案:<input name="fenlei" type="hidden" id="fenlei" value="<% =Request.Querystring("id") %>" />
其他:<%
id=request("id")
%>
<tr borderColor=#333333 bgColor=#111111>
<td width="100"><div align="center"><font color="red">*</font>分类</div></td>
<td>
<input name="fenlei" type="hidden" id="fenlei" value="<%=id%>" /> 所属分类
</td>
</tr>
上一个:aspl连接sql代码与asp连接access代码的差别
下一个:ASP调用函数怎么不对了