datagridview文本的一部分是一个链接

时间:2013-12-26 10:21:01

标签: asp.net gridview webforms

我有一个由SqlDataSource填充的datagridview。

    <asp:SqlDataSource ID="SqlEnvComments" runat="server" ConnectionString="<%$ ConnectionStrings:Kunskapshjulet %>" 
        SelectCommand="SELECT [EnvComment] FROM [MealItems], [Products] 
                       WHERE ([MealID] = @MealID)
                       AND [MealItems].[ProductID] = [Products].[ProductID]
                       AND [EnvComment] is not null">
        <SelectParameters>
            <asp:SessionParameter Name="MealID" SessionField="MealID" />
        </SelectParameters>
    </asp:SqlDataSource>

    <asp:GridView ID="GridView1" runat="server" DataSourceID="SqlEnvComments" ShowHeader="False" BackColor ="White"
        EmptyDataText="There are no envComments">
        <AlternatingRowStyle CssClass="Alt"/>
    </asp:GridView>

我想实现datagridview中显示的部分文本可能是指向另一个网站的链接。

e.g。如果EnvComment是

"Read more about Boxing Day at <a href="http://en.wikipedia.org/wiki/Boxing_Day">Wikipedia</a>" 

会有一个链接会重定向到维基百科。

有可能实现这个目标吗?

0 个答案:

没有答案