我有一个下拉列表和一个网格视图。根据下拉列表中选择的值,我想更新在 gridview 的第一列中指定的超链接的 NaviagetURL。所以我使用 onRowDataBound 函数来动态更新超链接的navigationurl。而且,我正在尝试检索第一列“ID”的值以将其用作 OnRowDataBound 函数中的查询字符串,但我无法使其正常工作。
当我单击第一列中的超链接时,查询字符串没有为变量 ID 分配任何值。因此,该 url 只是解析为http://localhost/JobCosting/EditSavedTicket.aspx?ID=
预期的是,单击超链接时打开的 url 应该具有在第一列中指定的值,该值分配给查询字符串中的变量 ID。如果我使用 e.Row.Cells[1].Text 或 e.Row.Cells[2].Text,则会正确检索列值,但我需要未检索到的列零中的值。当我检查 e.Row.Cells[0].Text 的字符串 id 的长度时,它为零
网格视图:
<asp:GridView ID="GridView2" runat="server" AllowSorting="True"
AutoGenerateColumns="False" DataSourceID="Saved_Work" OnRowDataBound="update_url"
Style="float: left; font-size: small; position: relative;
width: 82%; position: relative; top: -10px; height: 40px; font-size: small; text-align: left;
left: 30px;" align="left">
<Columns>
<asp:TemplateField HeaderText="ID">
<ItemTemplate>
<asp:HyperLink ID="Continue_SavedWork" runat="server" NavigateUrl='<%# Eval("ID", "~/EditSavedJob.aspx?ID={0}") %>'
Text='<%# Eval("ID") %>'></asp:HyperLink>
</ItemTemplate>
</asp:TemplateField>
<asp:BoundField DataField="UserID" HeaderText="User" SortExpression="UserID" />
<asp:BoundField DataField="Date_Created" HeaderText="Last_Updated_On" SortExpression="Date_Created" />
</Columns>
</asp:GridView>
后面的代码:
protected void update_url(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
//string NavigateUrl="<%# Eval('ID', 'EditSavedTicket.aspx?ID={0}) %>";
string id = e.Row.Cells[0].Text;
HyperLink hp = (HyperLink)e.Row.FindControl("Continue_SavedWork");
if (SavedWorkDD.SelectedValue.ToString() == "Tickets")
hp.NavigateUrl = string.Format("EditSavedTicket.aspx?ID={0}", id);
}
}