我的网格有一个大约16个文档的列表,可以根据使用该应用程序的人员进行更改。我被要求更改网格中的三个特定条目(如果它们存在于打开文档的链接中)。
如何检查网格中的这三个文档(列称为“工件”)并为三个文档中的每一个插入正确的链接而不是默认文本?
<asp:BoundField HeaderText="Artifact" DataField="ArtifactName" Visible="true" HeaderStyle-Width="300px" HeaderStyle-HorizontalAlign="Left"></asp:BoundField>
我们网站的其他部分提供了相同的链接。以下是它们在其他页面上的实现方式
<asp:LinkButton
ID="hypLnkAffidRelease2"
runat="server"
Text="Affidavit and Release form"
/>
var url = ResolveUrl("~/FormViewer.aspx");
this.lnkDownloadReleasefrm.Attributes.Add("onclick", " { popup=window.open('" + url + "?Form=4','Viewer','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, copyhistory=no, width=800, height=600'); popup.focus(); return false; }");
答案 0 :(得分:1)
您可以使用两个ItemTemplate(Label&amp; HyperLink)
创建TemplateField标签或多或少像BoundField一样呈现。
<asp:TemplateField HeaderText="Select">
<ItemTemplate>
<asp:Label ID="NoLink" runat="server"></asp:Label>
<asp:LinkButton ID="WithLink" runat="server" OnClick="Go_Click"/>
</ItemTemplate>
</asp:TemplateField>
绑定gridview
时GridView.DataSouce = theData;
GridView.DataBind();
//index refers to the column number of the template field
for (int i=0; i<in GridView.Rows.Count; i++)
{
Label a = (Label)GridView.Rows[i].Cells[index].FindControl("NoLink");
LinkButton b = (LinkButton)GridView.Rows[i].Cells[index].FindControl("WithLink");
if (// link exists)
{
a.Visible = false;
b.Visible = true;
}
else)
{
a.Visible = true;
b.Visible = false;
}
}