.net將資料庫中的html標籤展示

太陽的後裔發表於2020-11-05

webform
.aspx檔案:

<div id="divBox" runat="server"></div>

.cs檔案:

divBox.InnerHtml = "<table>To show the html content.</table>"

mvc

@Html.Raw(ViewData["Show"])

參考地址:
https://zhidao.baidu.com/question/299399754.html
https://blog.csdn.net/donhao/article/details/6614386