1

在过去的几个小时里,我一直把头撞在墙上,我似乎无法从 GridView 中的 SQL 单元格中查看 HTML 标记。

当我设置 AutoGenerateColumns=False 时,这很容易,因为我可以在 DataGird ASP.Net 标记中设置 boundfield 属性。但是,如果打开 AutoGenerate,我似乎无法对 gridview 做任何事情。

这是我的vb代码:

      Dim sqlcmd As String = "Select [Bugs:], [QC#:] FROM " & """" & datasource & """" & Extra
    Using con As New System.Data.SqlClient.SqlConnection(connexstring)
        con.Open()
            Dim da = New SqlDataAdapter(sqlcmd, con)
            Dim ds = New DataSet()
            da.Fill(ds)
            Gridview1.DataSource = ds
            da.Dispose()
            ds.Dispose()
        con.Close()
    End Using
    GenTables(gen)
    Dbind()

我需要显示的两列中都有 html 标记。

这是我的网格视图:

      <asp:GridView ID="GridView1" runat="server" 
        EmptyDataText="There are no data records to display." 
          BackColor="White" BorderColor="#999999" BorderWidth="1px" 
        CellPadding="3" ForeColor="Black" GridLines="Vertical" BorderStyle="Solid" 
        Visible="False" AutoGenerateEditButton="True">
        <AlternatingRowStyle BackColor="#CCCCCC" />
        <Columns>
        </Columns>
        <FooterStyle BackColor="#CCCCCC" />
        <HeaderStyle BackColor="Black" Font-Bold="True" ForeColor="White" />
        <PagerStyle BackColor="#999999" ForeColor="Black" 
            HorizontalAlign="Center" />
        <SelectedRowStyle BackColor="#000099" ForeColor="White" Font-Bold="True" />
        <SortedAscendingCellStyle BackColor="#F1F1F1" />
        <SortedAscendingHeaderStyle BackColor="#808080" />
        <SortedDescendingCellStyle BackColor="#CAC9C9" />
        <SortedDescendingHeaderStyle BackColor="#383838" />
    </asp:GridView>

有谁知道如何在列已经生成后允许gridview单元格显示html?

谢谢,扎克

4

2 回答 2

0

我发誓我看到有人用正确的答案回答了这个问题(我只是不确定他们为什么会删除他们的答案)。

对于所有寻找相同答案的人,这里是:

    Try
        For x = 0 To GridView5.Rows.Count
            GridView5.Rows(x).Cells(2).Text = Context.Server.HtmlDecode(GridView5.Rows(x).Cells(2).Text)
        Next
    Catch ex As Exception
    End Try

就这么简单...

于 2012-09-28T18:35:34.193 回答
0

我相信您可以使用OnPreRender网格的事件来实现这一点。

于 2012-09-28T02:37:34.870 回答