如何获取Select表单中的值,我用request.Form("select111"),取不出来

时间:2022-07-03 22:05:44
asp.net,c#
如何获取Select表单中的值,我用request.Form("select111"),取不出来

21 个解决方案

#1


Request.Form("select111"),检查select111名称是否正确。

#2


如何在C#中实现asp中如下的功能:

Request.Form(element).count

C#中Request.Form[element]是一个字符串

有没有替代方法?

#3


<select name="select18" Style="margin:-2px;width:40px;background-color: #CCCCCC;" size="1">                                       
    <option>男</option>
    <option>女</option> 
    &nbsp;                                      
    </select>

要把男、女都提取出来

#4


Request.Form["select111"]

#5


Request.Form["select111"]  select111是 name

#6


把你的()换成[]试下,可能是括号的问题

#7


使用服务器控件算了。

#8


1.Request.Form["select111"]


2.如何在C#中实现asp中如下的功能: 

Request.Form(element).count 

C#中Request.Form[element]是一个字符串 

有没有替代方法?
---------------------------------------
System.Collections.Specialized.NameValueCollection nvc=Request.Form;
int i=nvc.Count;

#9


3<select  id="select18" Style="margin:-2px;width:40px;background-color: #CCCCCC;" size="1" >                                        
     <option >男 </option > 
     <option >女 </option >  
    &nbsp;                                       
     </select > 

要把男、女都提取出来

---------------------------------

<script type="javascript/text">
var obj=document.getElementByID("select18");
for(var i=0;i<obj.length;i++)
{
   alert(obj.option[i].innerHTML);
}
</script>

#10


System.Collections.Specialized.NameValueCollection nvc=Request.Form;
int i=nvc.Count;
---------------------------------------
取得Form,我要select中的option 的COunt

#11


用javascript,C#本身没有?

#12


不好意思
理解错了

让他runat=“server”不行吗?
int i=this.Select1.Items.Count;

#13


up

#14


你這種使用服務器控件不是更好

#15


runat server就很好解决了吧,没必要瞎折腾

#16


记得给你的选项加value数据    
<select id="select18" Style="margin:-2px;width:40px;background-color: #CCCCCC;" size="1"  >                                         
      <option  value=" ">男  </option  >  
      <option  value=" ">女  </option  >   
    &nbsp;                                        
      </select  >  

cs页面
    if (HttpContext.Current.Request.Form["select18"] != null)
            {
               string[] str= HttpContext.Current.Request.Form["select18"].ToString().Split(',');
               throw new Exception(str.Length.ToString());
            }
            else
                Response.Write("没有数据");

#17


   public string GetStr()
        {
            StringBuilder sBulid = new StringBuilder();
            sBulid.Append(@"<select id=""select18"">                                        
       <option  value=""男"">男   </option  >  
       <option  value=""女"">女   </option  >                                 
       </select  > ");
            return sBulid.ToString();
        }
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            if (Request.Form["select18"] != null)
            {
                string s = Request.Form["select18"];
                Response.Write(s);
            }
        }

如果是一个select呢,怎么获取选中的值?上面办法选不到。

#18


<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
<script type="text/javascript">
function test()
{
var el = document.getElementById("sel");
document.getElementById("hitest").value = el.options[el.selectedIndex].value;
alert(document.getElementById("hitest").value);
}

</script>
</head>
<body>
    <form id="form1" runat="server">
   <select id="sel" onchange="test()" Style="margin:-2px;width:40px;background-color: #CCCCCC;" size="1" >  
  <option value="男"> 男 </option >  
  <option value="女">女 </option >  
  </select >  
<input type="hidden" id="hitest"  runat="server"/>    </form>
</body>
</html>


页面上放置一个隐藏域 input type=hidden

在后台直接hitest。value

#19


后台C#代码获取html控件的值使用的Request.Form["name"] 
"Name"是html的name,如果有相同name的控件,可以用逗号分割

sBulid.Append(@"<select id=""select18"">   里面加上name 就能取得了。

#20


引用 10 楼  的回复:
System.Collections.Specialized.NameValueCollection nvc=Request.Form;
int i=nvc.Count;
---------------------------------------
取得Form,我要select中的option 的COunt


给你的select加上id="select1" runat="server"
int i=select1.Items.Count;
取值用select1.Value

#21


public string GetStr()
{
StringBuilder sBulid = new StringBuilder();
sBulid.Append(@"<select id=""select18"" name=""select"">  
  <option value=""男"">男 </option >  
  <option value=""女"">女 </option >  //去掉一个也没问题。
  </select > ");
return sBulid.ToString();
}
protected void test_Click(object sender, EventArgs e)
{
if (Request.Form["select"] != null)
{
string s = Request.Form["select"];
Response.Write(s);
}
}

已经测试没问题。
前台<%=GetStr()%>

#1


Request.Form("select111"),检查select111名称是否正确。

#2


如何在C#中实现asp中如下的功能:

Request.Form(element).count

C#中Request.Form[element]是一个字符串

有没有替代方法?

#3


<select name="select18" Style="margin:-2px;width:40px;background-color: #CCCCCC;" size="1">                                       
    <option>男</option>
    <option>女</option> 
    &nbsp;                                      
    </select>

要把男、女都提取出来

#4


Request.Form["select111"]

#5


Request.Form["select111"]  select111是 name

#6


把你的()换成[]试下,可能是括号的问题

#7


使用服务器控件算了。

#8


1.Request.Form["select111"]


2.如何在C#中实现asp中如下的功能: 

Request.Form(element).count 

C#中Request.Form[element]是一个字符串 

有没有替代方法?
---------------------------------------
System.Collections.Specialized.NameValueCollection nvc=Request.Form;
int i=nvc.Count;

#9


3<select  id="select18" Style="margin:-2px;width:40px;background-color: #CCCCCC;" size="1" >                                        
     <option >男 </option > 
     <option >女 </option >  
    &nbsp;                                       
     </select > 

要把男、女都提取出来

---------------------------------

<script type="javascript/text">
var obj=document.getElementByID("select18");
for(var i=0;i<obj.length;i++)
{
   alert(obj.option[i].innerHTML);
}
</script>

#10


System.Collections.Specialized.NameValueCollection nvc=Request.Form;
int i=nvc.Count;
---------------------------------------
取得Form,我要select中的option 的COunt

#11


用javascript,C#本身没有?

#12


不好意思
理解错了

让他runat=“server”不行吗?
int i=this.Select1.Items.Count;

#13


up

#14


你這種使用服務器控件不是更好

#15


runat server就很好解决了吧,没必要瞎折腾

#16


记得给你的选项加value数据    
<select id="select18" Style="margin:-2px;width:40px;background-color: #CCCCCC;" size="1"  >                                         
      <option  value=" ">男  </option  >  
      <option  value=" ">女  </option  >   
    &nbsp;                                        
      </select  >  

cs页面
    if (HttpContext.Current.Request.Form["select18"] != null)
            {
               string[] str= HttpContext.Current.Request.Form["select18"].ToString().Split(',');
               throw new Exception(str.Length.ToString());
            }
            else
                Response.Write("没有数据");

#17


   public string GetStr()
        {
            StringBuilder sBulid = new StringBuilder();
            sBulid.Append(@"<select id=""select18"">                                        
       <option  value=""男"">男   </option  >  
       <option  value=""女"">女   </option  >                                 
       </select  > ");
            return sBulid.ToString();
        }
        protected void Page_Load(object sender, EventArgs e)
        {

        }

        protected void Button1_Click(object sender, EventArgs e)
        {
            if (Request.Form["select18"] != null)
            {
                string s = Request.Form["select18"];
                Response.Write(s);
            }
        }

如果是一个select呢,怎么获取选中的值?上面办法选不到。

#18


<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
<script type="text/javascript">
function test()
{
var el = document.getElementById("sel");
document.getElementById("hitest").value = el.options[el.selectedIndex].value;
alert(document.getElementById("hitest").value);
}

</script>
</head>
<body>
    <form id="form1" runat="server">
   <select id="sel" onchange="test()" Style="margin:-2px;width:40px;background-color: #CCCCCC;" size="1" >  
  <option value="男"> 男 </option >  
  <option value="女">女 </option >  
  </select >  
<input type="hidden" id="hitest"  runat="server"/>    </form>
</body>
</html>


页面上放置一个隐藏域 input type=hidden

在后台直接hitest。value

#19


后台C#代码获取html控件的值使用的Request.Form["name"] 
"Name"是html的name,如果有相同name的控件,可以用逗号分割

sBulid.Append(@"<select id=""select18"">   里面加上name 就能取得了。

#20


引用 10 楼  的回复:
System.Collections.Specialized.NameValueCollection nvc=Request.Form;
int i=nvc.Count;
---------------------------------------
取得Form,我要select中的option 的COunt


给你的select加上id="select1" runat="server"
int i=select1.Items.Count;
取值用select1.Value

#21


public string GetStr()
{
StringBuilder sBulid = new StringBuilder();
sBulid.Append(@"<select id=""select18"" name=""select"">  
  <option value=""男"">男 </option >  
  <option value=""女"">女 </option >  //去掉一个也没问题。
  </select > ");
return sBulid.ToString();
}
protected void test_Click(object sender, EventArgs e)
{
if (Request.Form["select"] != null)
{
string s = Request.Form["select"];
Response.Write(s);
}
}

已经测试没问题。
前台<%=GetStr()%>