我很欣赏在此过程中出错的任何见解。在这方面相当新鲜,并且一直在我的头上撞墙。可能很简单。
在搜索找到示例之后,我使用的是一个已用SqlDataSource
填充的转发器,并添加了一个checkboxlist
的静态值,我试图将其插入到Sql Server DB中从转发器页脚单击一个按钮。它应该只从具有复选框列表值的行中插入已分配任务的用户。
我收到以下错误
CS0266: Cannot implicitly convert type 'System.Web.UI.Control' to 'System.Web.UI.WebControls.CheckBoxList'. An explicit conversion exists (are you missing a cast?)
如果我在复选框列表中注释掉if语句,页面将构建而不会抛出错误,但插入内容不会完成。
我已经研究了这个错误,但是在检查if语句中的checkboxlist值以选择带有值的行时,我并没有完全明白我做错了什么。
这是我的代码:
<asp:Repeater ID="Repeater3" runat="server" DataSourceID="TaskAssignReviewSDS">
<FooterTemplate>
<asp:Button ID="Button1" runat="server" Text="Add Users" />
</FooterTemplate>
<ItemTemplate>
<asp:Table ID="Table1" runat="server" Width="400px">
<asp:TableRow>
<asp:TableCell Width="40%">
<asp:HiddenField ID="UserIdHidden" runat="server" Value='<%# Bind("UserId") %>' />
<asp:Label ID="UserNamelbl" runat="server" Text='<%# Bind("UserName") %>'></asp:Label>
</asp:TableCell>
<asp:TableCell Width="60%">
<asp:CheckBoxList ID="AssignCB" RepeatDirection="Horizontal" runat="server">
<asp:ListItem Value="1">Assign</asp:ListItem>
<asp:ListItem Value="2">Review</asp:ListItem>
</asp:CheckBoxList>
</asp:TableCell>
</asp:TableRow>
</asp:Table>
</ItemTemplate>
</asp:Repeater>
与点击代码隐藏相关:
protected void Button1_Click(object sender, EventArgs e)
{
foreach (RepeaterItem ri in Repeater3.Items)
{
CheckBoxList cb = ri.FindControl("AssignCB");
if (cb.value != null)
{
string TasksId = Request.QueryString["TasksId"].ToString();
string UserId = ((HiddenField)ri.FindControl("UserIdHidden")).Value;
string Assignation = ((TextBox)ri.FindControl("AssignCB")).Text;
//do inserting process using above values.
string insertSql = "INSERT INTO TaskUser(UserId,TasksId, Assignation) VALUES(@UserId, @TasksID,@Assignation) ";
using (SqlConnection myConnection = new SqlConnection("Data Source={*MyserverIP*}\\SQLEXPRESS12;Initial Catalog=MyDBName;User ID=****;Password=*****"))
using (SqlCommand myCommand = new SqlCommand(insertSql, myConnection))
{
myConnection.Open();
myCommand.Parameters.AddWithValue("@TasksID", TasksId);
myCommand.Parameters.AddWithValue("@UserId", UserId);
myCommand.Parameters.AddWithValue("@Assignation", Assignation);
myCommand.ExecuteNonQuery();
myConnection.Close();
}
}
}
}
感谢您的帮助。
答案 0 :(得分:0)
您需要将AssignCB
转换为CheckBoxList。 FindControl()只返回System.Web.UI.Control
。
CheckBoxList cb = (CheckBoxList)ri.FindControl("AssignCB");