ASP.NET 动态数据字段值在浏览器中消失

发布于 2024-08-29 05:31:04 字数 168 浏览 3 评论 0原文

我有一个 ASP.NET 动态数据 Web 应用程序,其中有一个名为 ActivationResource 的实体。它的属性之一是 CellPhone 字段。现在,每当我打开其中一个实体的列表或详细信息视图时,手机号码会显示一会儿然后消失。

有人对这种神秘行为的原因有任何想法吗?

I have an ASP.NET Dynamic Data web application, with an entity called ActivationResource. One of the properties of this is a CellPhone field. Now, whenever I open a List or Details view of one of these entities, the cell phone number displays for a moment then disappears.

Anyone have any ideas as to the cause of this mysterious behavior?

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

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

发布评论

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

评论(1

·深蓝 2024-09-05 05:31:04

奇怪的是,它出现后就消失了。这听起来像是客户端问题而不是服务器问题,因为服务器在返回页面后就脱离了循环(除了 AJAX)。

尝试的事情:

  • 如果您在页面上查看源代码,您会在电话号码消失后看到它吗?
  • 如果您使用类似格式的电话号码编写静态 HTML 页面,您会得到相同的行为吗?
  • 您使用的是什么浏览器,其他浏览器是否也会出现这种情况?

有时,浏览器插件喜欢混淆它们检测到的电话号码,以使它们执行特殊的操作(例如,我认为 Skype 就是这样做的)。

Strange that it would disappear after showing up. This sounds like a client issue instead of server, since the server is out of the loop after returning the page (AJAX aside).

Things to try:

  • If you View Source on the page, do you see the phone number after it disappears?
  • If you write a static HTML page with a similarly formatted phone number, do you get the same behavior?
  • What browser are you using, and does it happen with others?

Sometimes, browser pluggins like to mess with what they detect as phone numbers to make them do special things (e.g. I think Skype does that).

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