C#:动态添加的文本框存在 URL 问题
我用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 TextBox
s 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解你的问题,那么你正试图阻止你的 [rich] 文本框自动识别 URL。如果是这种情况,只需翻转
DetectUrls
布尔值即可: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: