我正在从以下 SQL 表中提取一些 URL,其中包含以下列:
- 名称 - 包含站点的名称
- URL - 包含站点的 URL
然后我生成动态超链接并将它们附加到 gridview 列:
protected void grdReport_Bnd(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Cells[1].Visible = false;
e.Row.Cells[2].Visible = false;
string qry = e.Row.Cells[2].Text; // Pulling the URL
string username = (string)Session[Constants.AssociateID]; // Pulling associate ID frpm session.
string qry1 = qry + "?ID=" + username; // Passing the associate ID to the URL
string txt = e.Row.Cells[1].Text.ToString(); // Pulling the text to display on hyperlink.
HyperLink lnk = new HyperLink();
lnk.Text = txt;
lnk.NavigateUrl = qry1;
lnk.Attributes.Add("Border", "0");
lnk.Attributes.Add("Target", "_blank");
e.Row.Cells[3].Controls.Add(lnk);
}
}
现在我需要隐藏这个结果 URL。例如,超链接处的 URL 可能是:http://1.20.40.40:8050/?ID=123456
应该显示为超链接的文本在http://mysite.com/ABC
哪里,并且是显示此超链接的站点。abc
mysite.com
我见过各种各样的例子,但无法理解它们。