我知道這在過去一直在爲我工作,但我嘗試設置我的radiobutton
的值將被忽略,並且該值被設置爲我單選按鈕的ID。在ASP上的設置值:RadioButton
ASP.Net
<asp:RadioButton ID="rb" runat="server" />
背後
//Test 1
rb.InputAttributes.Add("value", "foo");
//Test 2
rb.InputAttributes["value"] = "foo";
代碼HTML輸出
<input id="rb" type="radio" name="rb" value="rb" />
缺少什麼我在這裏?
設置ASP.Net標記中的值正在工作,但我寧願從代碼隱藏這樣做。
這裏也亞克看看http://www.daveparslow.com/2007/08/assigning-value-to-aspnet-checkbox.html – 2014-09-26 09:01:43