我对C#有一些经验,但我是ASP方面的新手,我正在研究从MSSQL服务器获取问题/答案的调查项目,加载适当的控件对于问题所需的答案类型(复选框,无线电,下拉菜单,文本输入),将问题的每个可能答案添加为ListItem,然后将填充的控制器添加到位于单个调查问题网页内的占位符。在回答提交时,占位符将重新填充下一个问题,并为答案类型加载适当的控制器。
我目前在点击提交按钮时尝试获取用户的答案时遇到了很多麻烦,因为我无法获得对任何复选框/无线电/文本输入的引用哪些是被选中的。
在调试和逐步调整每一行并观察局部变量时,会看到发生了什么,this seems to be the hierarchy of the inserted answers at the time they are all added to the placeholder。
我尝试在submitButton中使用forEach循环(除此之外,在下面的代码示例中留下它)方法来检查所有项目,但似乎根本无法访问它...各种测试看起来答案被破坏了第二个submitButton被按下,并且在submitButton方法中的任何东西都可以运行之前,那么我怎样才能让用户回答他们提交的答案?
Question.aspx.cs
protected void Page_Load(object sender, EventArgs e)
{
....
else if (questionType == 2) //checkbox
{
CheckBoxQuestionController checkBoxController = (CheckBoxQuestionController)LoadControl("~/CheckBoxQuestionController.ascx");
checkBoxController.ID = "checkBoxQuestionController";
checkBoxController.QuestionLabel.Text = questionText;
SqlCommand optionCommand = new SqlCommand("SELECT * FROM answerOptionTable WHERE answerOptionTable.q_Id = " + currentQuestion, connection);
//run command
SqlDataReader optionReader = optionCommand.ExecuteReader();
//loop through all results
while (optionReader.Read())
{
ListItem item = new ListItem(optionReader["answerText"].ToString(), optionReader["a_Id"].ToString());
int currentAnswerId = Convert.ToInt32(optionReader["a_Id"]);
checkBoxController.QuestionCheckBoxList.Items.Add(item); //add answer to list
}
QuestionPlaceholder.Controls.Add(checkBoxController);
}
//other questionType checking here
connection.Close();
}
protected void SubmitButtonClick(object sender, EventArgs e)
{
//template.Items.
Control resultControl = FindControl("checkBoxQuestionController");
//test 1
CheckBoxList resultControl2 = (CheckBoxList)FindControl("checkBoxQuestionController");
CheckBoxList resultControl3 = (CheckBoxList)FindControl("questionCheckBoxList");
//test 123213
CheckBoxList Cbx = (CheckBoxList)QuestionPlaceholder.FindControl("checkBoxQuestionController");
//test 2
//for (int i = 0; i < QuestionPlaceholder.Controls.Count; i++)
//{
// if (QuestionPlaceholder.Controls[i].GetType() == typeof(CheckBoxList))
// {
// CheckBoxList myList = QuestionPlaceholder.Controls[i].GetType();
// }
//}
//test 3
//foreach (ListItem cbList in QuestionPlaceholder.Controls.("checkBoxQuestionController")
//{
// if (cbList.Selected)
// {
// }
//}
//test 4
//foreach (ListItem cb in QuestionPlaceholder.Controls.OfType<ListItem>())
//{
// if (cb != null)
// {
// }
//}
int count = 0;
List<ListItem> selected = new List<ListItem>();
foreach (ListItem item in debugList.Items)
{
if (item.Selected)
{
count++;
}
}
Response.Redirect("Question.aspx");
}
CheckBoxQuestionController.ascx.cs
public partial class CheckBoxQuestionController : System.Web.UI.UserControl
{
//Getters and setters
public Label QuestionLabel
{
get
{
return questionLabel;
}
set
{
questionLabel = value;
}
}
public CheckBoxList QuestionCheckBoxList
{
get
{
return questionCheckBoxList;
}
set
{
questionCheckBoxList = value;
}
}
protected void Page_Load(object sender, EventArgs e)
{
}
}
CheckBoxQuestionController.ascx
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="CheckBoxQuestionController.ascx.cs" Inherits="Survey_Prototype.CheckBoxQuestionController" %>
<div class="bodyTitle">
<asp:Label ID="questionLabel" runat="server" Text="LabelText"></asp:Label>
</div>
<div class="answerOptionContainer">
<asp:CheckBoxList ID="questionCheckBoxList" runat="server">
</asp:CheckBoxList>
</div>
答案 0 :(得分:0)
不确定为什么你不直接使用checkboxlist控件但使用自己的控件
当你使用自己的控件时,viewstate应由你自己处理,否则你的回发后子控件将会消失
在你的情况下,在question.aspx.cs中你访问了UC的控件集并对其进行了修改,但是当页面回发时,你添加到其中的所有子控件都将消失,因为之前应用了viewstate创建子控件,实际上用户选择将丢失
你应该把所有修改代码都放到控件中,然后删除基本的
然后你的子控件(这里是QuestionCheckBoxList)将在应用ViewState之前生成,然后你的用户选择将被保留,你可以使用任何方法来查看哪些选项
protected override void CreateChildControls()
{
base.CreateChildControls();
}