我有一个GridView绑定到我构造的DataTable.表中的大多数列包含hypelinklink的原始HTML,我希望HTML在浏览器中呈现为链接,但GridView会自动对HTML进行编码,因此它呈现为标记.
如果不显式添加HyperLink或任何其他列,我该如何避免这种情况?
只需将BoundColumn.HtmlEncode
属性设置为false:
我担心没有简单的方法来禁用GridView
with 中的内容的HTML编码.但是,我可以想到两个可能解决您遇到的问题的解决方法:AutoGenerateColumns
= true
选项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
或Page
或Control
使用它,使自己的检查DataTable
,并创建一个明确的BoundColumn
为每列:
foreach (DataColumn column in dataTable.Columns) { GridViewColumn boundColumn = new BoundColumn { DataSource = column.ColumnName, HeaderText = column.ColumnName, HtmlEncode = false }; gridView.Columns.Add(boundColumn); }
我能够通过使用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); } } }
另一种方法是在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