所以基本上,我的目标是做一个简单的循环,在提交时,检查是否在继续之前检查了一堆盒子。我知道如何在PHP或MVC中执行此操作,但我不得不使用我的老板的webcontrol。
Ergo,我们来了。
Default.aspx中的相关代码
<div>
<asp:CheckBoxList id="eligibilityreqs" runat="server">
<asp:ListItem value="item1" runat="server">I am great</asp:ListItem>
<asp:ListItem value="item2" runat="server">I am amazing.</asp:ListItem>
<asp:ListItem value="item3" runat="server">I completed EVERTHING</asp:ListItem>
<asp:ListItem value="item4" runat="server">Pies are delicious</asp:ListItem>
<asp:ListItem value="item5" runat="server">Oh man a fifth one</asp:ListItem>
</asp:CheckBoxList>
</div>
<p>
<asp:Label Text="" id="finalmessage" runat="server" />
</p>
<div>
<asp:Button Text="Submit" runat="server" onclick="process" />
</div>
Default.aspx的代码隐藏
using System;
using System.Web;
using System.Web.UI;
using System.Data;
using System.Web.Configuration;
using System.Data.Odbc;
using System.Web.UI.WebControls;
namespace minor
{
public partial class Default : System.Web.UI.Page
{
protected void process (object sender, EventArgs e)
{
bool valid = true;
string debugtext = "";
foreach (ListItem li in eligibilityreqs.Items) {
if (!li.Selected) {
valid = false;
debugtext = debugtext + li.Selected;
}
}
if (!valid) {
finalmessage.Text = "There has been an error, please check all boxes." + debugtext;
} else {
string conString = WebConfigurationManager.ConnectionStrings ["connectionstring"].ConnectionString;
using (OdbcConnection con = new OdbcConnection(conString)) {
string sqlstring = "SELECT yum FROM pie_application LIMIT 1;";
using (OdbcCommand com = new OdbcCommand(sqlstring, con)) {
con.Open ();
string reader = Convert.ToString (com.ExecuteScalar ());
finalmessage.Text = reader;
}
}
}
}
}
}
作为参考,debugtext的输出只是false,false,false,false,false。
答案 0 :(得分:0)
我的猜测是你甚至在回发上数据绑定CheckBoxList
。这将取消选择所有选定的项目。
请检查IsPostBack
属性。
protected void Page_Load(Object sender, EventArgs e)
{
if(!IsPostBack)
{
DataBindCheckBoxList();
}
}
答案 1 :(得分:0)
原来这是一个已知的单声道bug。对于那些感兴趣的人,无论如何都要更新mono或构建它,假设它工作然后部署。
或者,只需编写更好的代码并完全避免网络控制......如果你的老板允许你。