找不到属性“onmousedown” VB网
当我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 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")?