我已经四处寻找,但还没有找到解决方案。
我有一个由DropdownList调用的存储过程填充的Gridview。查询工作正常,并为我提供了一个包含值的表。您将看到我在第一列中编写了文本以转换为超链接。
除了第一行(不是标题行)没有链接外,一切正常。实际上,超链接地址将应用于下一行。所以它将其余的链接撞到一排。
我确实发现在调试时,看起来应该是第一个超链接的单元格会出现一个null(“”)值。当我遍历IntelliSense时,我发现该行确实显示了正确的属性(DataItem中有一个文本值> Row> ItemArray)。
客户端
<asp:TableCell>
<asp:Label ID="ddlLabel" runat="server" Text="Choose a Group Folder: " />
<asp:DropDownList ID="ddlFolders" runat="server" AutoPostBack="true"
OnSelectedIndexChanged="ddlFolders_SelectedIndexChanged">
</asp:DropDownList>
</asp:TableCell>
<asp:TableCell ColumnSpan="2">
<asp:GridView ID="gvReportList" runat="server" AutoGenerateColumns="false"
CellPadding="5" OnRowDataBound="gvReportList_RowDataBound" Width="98%">
<Columns>
<asp:HyperLinkField HeaderText="Name" DataTextField="Name" Target="_blank" />
<asp:BoundField HeaderText="Description" DataField="Description" />
</Columns>
</asp:GridView>
</asp:TableCell>
服务器端C#
// hyperlink binding by row for first column in gridview
protected void gvReportList_RowDataBound(object sender, GridViewRowEventArgs e)
{
//Changes text in the first column into HyperLinks
HyperLinkField nameLink = gvReportList.Columns[0] as HyperLinkField;
string linkPath = "http://inserted-address-here";
if (e.Row.RowType == DataControlRowType.DataRow)
{
//applies a unique suffix to the address depending on the link name
HyperLink nameHl = (HyperLink)e.Row.Cells[0].Controls[0];
string nameText = nameHl.Text;
string linkSuffix = nameText.Replace(" ", "+");
nameLink.NavigateUrl = linkPath + linkSuffix;
}
}
我只能假设它与我将超链接绑定到gridview的顺序有关。或者它与第一行有关,即使有数据也会出现空值。
答案 0 :(得分:0)
string linkSuffix = Datainder.Eval(e.DataItem, "Name").ToString().Replace(" ", "+");
nameLink.NavigateUrl = linkPath + linkSuffix;