在自动生成的GridView列中阻止HTML编码

时间:2010-01-30 17:07:50

标签: asp.net gridview

我有一个GridView绑定到我构造的DataTable。表中的大多数列包含hypelinklink的原始HTML,我希望HTML在浏览器中呈现为链接,但GridView会自动对HTML进行编码,因此它会呈现为标记。

如果不明确添加HyperLink或任何其他列,我该如何避免这种情况?

7 个答案:

答案 0 :(得分:26)

只需将BoundColumn.HtmlEncode属性设置为false:

<德尔> <asp:BoundField DataField="HtmlLink" HtmlEncode="false" />


我担心没有简单的方法可以使用AutoGenerateColumns GridView禁用= true中内容的HTML编码。但是,我可以想到两个可以解决您遇到的问题的解决方法:

选项1:在执行基本方法之前,继承GridView类,覆盖Render方法,遍历所有单元格,解码其内容:

for (int i = 0; i < Rows.Count; i++) 
{
    for (int j = 0; j < Rows[i].Cells.Count; j++) 
    {
        string encoded = Rows[i].Cells[j].Text;
        Rows[i].Cells[j].Text = Context.Server.HtmlDecode(encoded);
    }
}

选项2 :在继承自GridView或使用PageControl的类中,自行检查{{1}并为每列创建一个明确的DataTable

BoundColumn

答案 1 :(得分:9)

我能够通过使用JørnSchou-Rode提供的解决方案实现这一点,我进行了一些修改,使其能够从我的Gridview的RowDataBound事件中运行。

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
           for (int j = 0; j < e.Row.Cells.Count; j++) 
           {
               string encoded = e.Row.Cells[j].Text;
               e.Row.Cells[j].Text = Context.Server.HtmlDecode(encoded);
           }

    }
}

答案 2 :(得分:7)

另一种方法是在RowDataBound事件处理程序中添加类似以下内容......

    If e.Row.RowType = DataControlRowType.Header Then
        For Each col As TableCell In e.Row.Cells
            Dim encoded As String = col.Text
            col.Text = Context.Server.HtmlDecode(encoded)
        Next
    End If

答案 3 :(得分:3)

使用OnRowCreated

    protected void gvFm_RowCreated(object sender, GridViewRowEventArgs e)
    {
        foreach (TableCell cell in e.Row.Cells)
        {
            BoundField fldRef = (BoundField)((DataControlFieldCell)cell).ContainingField;
            switch (fldRef.DataField)
            {
                case "ColToHide":
                    fldRef.Visible = false;                        
                    break;
                case "ColWithoutEncode":
                    fldRef.HtmlEncode = false;                        
                    break;
            }
        }
    }

答案 4 :(得分:1)

好了,因为链接的html已经在你的数据库中,你可以将html输出到文字控件。

<asp:TemplateField HeaderText="myLink" SortExpression="myLink">
    <ItemTemplate>
        <asp:Literal ID="litHyperLink" runat="server" Text='<%# Bind("myLink", "{0}") %>' />
    </ItemTemplate>
</asp:TemplateField>

这应该将您的链接呈现为原始文本,允许浏览器将其呈现为您期望的链接。

答案 5 :(得分:1)

由于所有答案似乎都在C#中并且问题不是特定的,因此我使用ASP.Net和VB.Net遇到了这个问题,并且公认的解决方案在VB中对我不起作用(尽管我认为它确实可以工作)在C#中)。希望这可以帮助在ASP中使用VB.Net的任何人像我一样偶然发现这一点。

在VB.Net中,BoundColumn不能添加到Gridview.Columns,因为它不是System.Web.UI.WebControls.DataControlField,所以必须使用BoundField,它是DataControlField

BoundColoumn也没有HtmlEncode属性,但是BoundField有。此外,在VB.Net中,DataSource变为DataField

        For Each dataCol As DataColumn In dv.Table.Columns
            Dim boundCol As New BoundField With {
                .DataField = dataCol.ColumnName,
                .HeaderText = dataCol.ColumnName,
                .HtmlEncode = False
            }

            gvResult.Columns.Add(boundCol)
        Next

        gvResult.DataSource = dv
        gvResult.Databind()

还请注意,您必须显式设置AutoGenerateColumns="False",否则GridView仍将生成列以及上面添加的列。

答案 6 :(得分:0)

如果要在所有行和列中禁用HTML编码,可以在RowDataBound事件中使用此代码。

protected void GV_Product_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if (e.Row.RowType == DataControlRowType.DataRow)
    {
        foreach (TableCell ObjTC in e.Row.Cells)
        {
            string decodedText = HttpUtility.HtmlDecode(ObjTC.Text);
            ObjTC.Text = decodedText;
        }
    }
}