从httpContext获取ASP.NET表单字段的值时出现问题

时间:2011-02-17 19:04:52

标签: c# asp.net webforms

我在ASP.NET ascx文件中声明了一个表单输入:

<input type="hidden" id="hidServiceType" name="hidServiceType" value="somevalue" />

在网络服务/网络方法中,我试图获得这个

的价值
HttpContext postedContext = HttpContext.Current;
serviceType = postedContext.Request.Form["hidServiceType"];

我可以深入了解PostedContext.Request.Form并看到2个键,一个是“hidServiceType”但是“serviceType”variable =“”;

我错过了什么,这看起来很琐碎。

1 个答案:

答案 0 :(得分:2)

为什么不在输入字段中添加runat =“server”属性,然后在代码隐藏中执行其他操作时访问它?