本文介绍了在文本框中显示html内容的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 有没有办法在asp.net c#webform中的文本框中显示html内容?Is there any way to display html content in a text box, in a asp.net c# webform?推荐答案<%@ Page Language="C#" AutoEventWireup="true" ValidateRequest="false" CodeFile="Availability.aspx.cs" Inherits="Availability" %> 但是将HTML数据存储在数据库中会产生一些安全问题。为了避免这种情况,你可以使用HTMLEncode()和HTMLDecode()技术。 谢谢But storing the HTML data in the database creates some security problems. To avoid that you can use HTMLEncode() and HTMLDecode() Technique.Thanks 这篇关于在文本框中显示html内容的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-23 01:14