Prevent HTML encoding in auto-generated GridView columns

前端 未结 7 2138
渐次进展
渐次进展 2020-11-27 06:46

I have a GridView bound to a DataTable that I construct. Most columns in the table contain the raw HTML for a hypelinklink, and I would like that HTML to render as a link i

7条回答
  •  我在风中等你
    2020-11-27 07:33

    Well since the html for the link is in your db already, you could just output the html to a literal control.

    
        
            
        
    
    

    This should render your link as raw text allowing the browser to render it as the link you expect it to be.

提交回复
热议问题