Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
让我详细解释一下form中有textarea。在提交表单时,textarea 的文本被存储在数据库中。在显示数据库中的这些文本时,我想执行基本的 html 代码,例如 <b><i><u>...etc 例如:-如果用户在 textarea 中输入“<b>hello</b>”。那么这个词“你好”将以粗体显示。
@Html.Raw( [your HTML code from the database] )在您的视图中使用。
@Html.Raw( [your HTML code from the database] )
在你的 Razor 文件中:
<b>@myHtmlFromTheDatabase</b>