0

我正在从以下 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哪里,并且是显示此超链接的站点。abcmysite.com

我见过各种各样的例子,但无法理解它们。

4

1 回答 1

0

好吧,我发现在这种情况下,简单的重写是行不通的。因此,我现在在一个解决方案下添加了不同的项目。

于 2013-05-21T13:17:22.157 回答