C#:动态添加的文本框存在 URL 问题

发布于 2024-12-10 21:15:11 字数 431 浏览 1 评论 0原文

我用C#写了一段代码。 也就是说,动态添加 TextBox 来编辑来自数据库的数据。
如果数据包含 URL,我会遇到问题。
我需要在文本框中显示数据,就像在数据库中一样,但我在文本框中添加了附加的超链接。

示例:-

数据:我的 URL :http://localhost/web/report.aspx?Id=5&code=66634

文本框中的文本如下所示

我的 URL http://localhost/web/report.aspx?Id=5&code=66634

有人可以帮助我为什么超链接出现在我的案例中吗?

I have written a piece of code in C#.
That is, dynamically adding TextBoxs to edit data coming from database.
I am getting issues if the data contains URLs.
I need to show the data in textboxs as it is in database, but I am getting appended hyperlinks into the textboxs.

Example :-

Data : My URL :http://localhost/web/report.aspx?Id=5&code=66634

Text in the textbox look like below

My URL http://localhost/web/report.aspx?Id=5&code=66634

Could some one please help me why hyperlinks came in my case?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深白境迁sunset 2024-12-17 21:15:11

如果我理解你的问题,那么你正试图阻止你的 [rich] 文本框自动识别 URL。如果是这种情况,只需翻转 DetectUrls 布尔值即可:

myRichTextBox.DetectUrls = false;

If I understand your question, you are trying to prevent your [rich] textbox from automatically recognizing URLs. If that's the case, simply flip the DetectUrls bool:

myRichTextBox.DetectUrls = false;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文