gpt4 book ai didi

c# - 用C#制作

转载 作者:行者123 更新时间:2023-11-30 20:11:05 24 4
gpt4 key购买 nike

我在 VS(C# 和 ASP.net)中编写这段代码:

using (StreamWriter streamWriter = File.CreateText(@"Example.aspx"))
{
streamWriter.WriteLine( "<pre>" + TextBox2.Text + "</pre>" );
}

此代码打开 example.aspx 文件并将 TextBox2.text 的值写入 Example.aspx 。但有一个问题 。当我写 <h1> </h1>进入 Textbox2.text 我得到错误。或者当我写 <i> </i>进入 textbox2.text 我得到同样的错误!我要做什么? .提前致谢 。我的错误是:

A potentially dangerous Request.Form value was detected from the client (ctl00$ContentPlaceHolder1$TextBox2="<h1> </h1>").

最佳答案

asp.net 默认会阻止 html 代码作为文本框的输入,您必须在页面中设置此属性 ValidateRequest="false" 详细示例:http://yourtahir.wordpress.com/2008/03/28/aspnet-not-allow-html-in-text-boxserver-error-in-application-a-potentialy-dangerous-requestform-value-was-detected/

关于c# - 用C#制作<h1> </h1>,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4213980/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com