Asp.net WebForms DropDownList - 具有不同值和显示文本的控件(DataValueField / DataTextField)

时间:2015-02-07 12:54:28

标签: c# asp.net gridview webforms

我有两个实体类 - 用户和任务。每个用户都具有以下属性:   UserId (int),用户名(字符串),密码(字符串), FirstName (字符串),姓氏(字符串)

和每个任务,这些: TaskId (int),标题(字符串),描述(字符串), EstimatedTime (int), CreatedOn (日期时间), CreatedBy (int), AssignedTo (int),已完成(bool)

所以 CreatedBy AssignedTo 实际上是UserIds - CreatedBy是创建任务的用户的ID,AssignedTo - 任务所针对的ID 。我有一个数据库,我使用它们 - 没有问题。

在我的WebForms应用程序中,我使用GridView来显示任务。所以我隐藏了TaskId,所有其他属性都显示为GridView中的列。但是,问题是,我不希望我的用户将CreatedBy和AssignedTo中的值视为ids(整数) - 我希望他们将值视为用户名,因此它看起来像这样: AssignedTo - " myUsername", 而不是这样的: AssignedTo - 321。

这是我的第一个问题,我不知道该怎么做。正如您将在我的代码中看到的那样,ItemTemplate是一个Label,绑定到属性AssignedTo。如何保持值不可见并显示用户名?

其次,当我以管理员身份登录时,我希望能够编辑任务。所以我将这些命令字段添加到我的GridView:

<asp:CommandField ShowEditButton="true" />
<asp:CommandField ShowDeleteButton="true" />

我有一个TaskRepository和UserRepository,用于访问我的数据库。例如,GridView绑定到TaskRepository中的属性,该属性返回所有任务的列表:

TaskRepository taskRepo = new TaskRepository;
GridViewTasks.DataSource = taskRepo.GetAll();
GridViewTasks.DataBind();

一切都很完美。 这是我的AssignedTo ItemTemplate:

<asp:TemplateField HeaderText="Assigned to">
   <EditItemTemplate>
                    <asp:DropDownList ID="editAssignedTo" runat="server" DataTextField="Username" DataValueField="UserId"></asp:DropDownList>
   </EditItemTemplate>
   <ItemTemplate>
                    <asp:Label ID="lbAssignedTo" runat="server" Text='<%#Bind("AssignedTo")%>'></asp:Label>
   </ItemTemplate>
</asp:TemplateField>

因此,当我编辑任务时,我点击&#34;编辑&#34;我可以更改每列中所选行的值。但问题再次出现在AssignedTo上。从代码中可以看出,当我编辑它时,我看到一个DropdownList,其中有Ids,我必须从用户名中选择。但是当我尝试保存我的更改时,我得到一个对象null引用异常..我不知道为什么。这是我的代码:

protected void GridViewTasks_RowUpdating(object sender, GridViewUpdateEventArgs e)
        {
            GridViewRow selectedRow = GridViewTasks.Rows[e.RowIndex];
            Tasks task = new Tasks();
            task.TaskId = (int)GridViewTasks.DataKeys[e.RowIndex].Value;
            TextBox title = (TextBox)selectedRow.FindControl("tbTitle");
            task.Title = title.Text;
            TextBox description = (TextBox)selectedRow.FindControl("tbDescription");
            task.Description = description.Text;
            Label createdOn = (Label)selectedRow.FindControl("lblCreatedOn");
            task.CreatedOn = DateTime.Parse(createdOn.Text);
            Label createdBy = (Label)selectedRow.FindControl("lblCreatedBy");
            task.CreatedBy = int.Parse(createdBy.Text);
            TextBox estimTime = (TextBox)selectedRow.FindControl("tbEstimTime");
            task.EstimatedTime = int.Parse(estimTime.Text);          
            DropDownList assignedTo = (DropDownList)selectedRow.FindControl("editAssignedTo");           
            task.AssignedTo = int.Parse(assignedTo.SelectedItem.Value);
            Label lblFinished = (Label)selectedRow.FindControl("lblFinished");
            task.Finished = bool.Parse(lblFinished.Text);
            taskRepo.Save(task);
            BindDataToGridView();
        }

一切都适用于其他控件,但当它到达task.AssignedTo时,我得到了异常。这就是我想要发生的事情:当我单击编辑时,我想在AssignedTo列中看到一个DropDownList,我的所有用户都可以选择用户名(到目前为止,这么好),当我选择一个用户并单击Update时,我想要它获取所选用户名的assignedTo,知道它对应的userId并更新我的任务。我哪里出错?

对于这篇长篇文章感到抱歉,我尽量做到尽可能彻底,因为我不明白问题出在哪里,也许我甚至错过了一些重要的事情(这是我的第一篇文章)。请帮助,因为我一直坚持这一点。

1 个答案:

答案 0 :(得分:0)

对于您的第一个问题,您可以使用OnRowDataBound方法将您的ID转换为用户名。基本上,您从行中获取ID并根据ID获取名称。

例如:

protected void Gridview_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if(e.Row.RowType == DataControlRowType.DataRow)
    {
       //get your control like in rowupdating
       //take the ID value and query against your user info to get the name
       // set the value
    }
}

对于您的第二个问题,可能需要OnRowUpdated。我没有在这台电脑上安装VS来试试,所以这只是猜测。