找不到属性“onmousedown” VB网

发布于 2024-10-30 20:26:59 字数 199 浏览 2 评论 0原文

当我在 asp:button 上使用“onmousedown”时,为什么 Visual Studio 在任务列表中给出此消息:

找不到属性“onmousedown” 元素按钮

当然它确实存在。毕竟,它有效! “onmouseup”也会发生同样的事情

有没有办法抑制这些消息?

Why does Visual studio give this message in the task list when I use "onmousedown" on an asp:button:

Could not find attribute 'onmousedown'
of element button

Surely it does exist. After all, it works! The same thing happens for "onmouseup"

Is there a way to suppress these messages?

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

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

发布评论

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

评论(1

℡Ms空城旧梦 2024-11-06 20:27:00

根据 MSDN,这些不是 asp:Button 标记上的有效属性: http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.button.aspx#DeclarativeSyntax

那么它是如何工作的呢?不确定,我猜它是从 WebControl 或 Control 继承的。

是否有充分的理由说明为什么您不能使用 Click 或 Command 处理程序(OnClick="MethodName" 或 OnCommand="MethodName")?

According to MSDN those aren't valid attributes on an asp:Button tag: http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.button.aspx#DeclarativeSyntax

So how does it work? Not sure, I guess it is inheriting them from WebControl or Control.

Is there a good reason why you can't use Click or Command handlers (OnClick="MethodName" or OnCommand="MethodName")?

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