首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > ASP >

小弟我这样如何去不到表单的值呀?

2012-03-17 
我这样怎么去不到表单的值呀?~~~~~~~~~~~~formname form1 method post action savequanxian.asp?

我这样怎么去不到表单的值呀?~~~~~~~~~~~~
<form   name= "form1 "   method= "post "   action= "savequanxian.asp?userid= <%=rs( "userid ")%> ">
<%if   rs( "hfqx ")=true   then%>
<input   name= "ishf "   type= "radio "   value= "true "   checked= "CHECKED ">
<input   name= "ishf "   type= "radio "   value= "false ">
<%else%>
<input   name= "ishf "   type= "radio "   value= "true ">
<input   name= "ishf "   type= "radio "   value= "false "   checked= "CHECKED ">
<%end   if%>
</form>
-----------------------------------
接收权限代码如下
response.Write(request( "ishf "))


为什么是空值呀?

[解决办法]
response.Write(request.getParameter( "ishf "))

热点排行