ItemUpdating 事件未触发
我是 Sharepoint 新手。我制作了会议室预订日历。当我们预订任何会议时,我的代码运行良好。但是当我们编辑现有预订时,我的 ITEMUPDATING() 事件不会触发。我已在事件接收器类中重写了此方法。
以前它会触发此 ItemUpdating 事件。但现在突然不发射了。我在 ItemUpdating 事件中插入了一个调试器,但它没有命中。
I am new to Sharepoint. I making a conference room booking calendar. My code is working fine when we book any meetings. but when we EDIT the existing booking then my ITEMUPDATING() event is not firing. I have overridden this method in my Event Reciever class.
Previously it was firing this ItemUpdating event. But now suddenly it is not firing. I had inserted a Debugger in ItemUpdating Event but it is not hitting.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保与事件接收器附加的 element.xml 文件包含其中的事件,如下所示:
当您覆盖事件接收器类中的新函数时,VS 可能不会在 element.xml 文件中为其添加等效的 xml
Make sure the element.xml file that's attached with the event receiver contain the event in it like :
As when you override new function in event receiver class VS mayn't add the equivalent xml for it in element.xml file