重定向项目已添加到共享点列表中
当用户将新项目输入到我配置的自定义列表中后,如何重定向到“谢谢”页面。
我能想到的一种方法是在项目中添加事件接收器,但是有没有 CAML 方法可以做到这一点?
how can i redirect to a "Thank You" page after a user has entered a new item into a custom list that I have provisioned.
one way i can think of is in the item adding event receiver but is there a CAML way of doing it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用“源”URL 参数。
例如,如果您的列表的链接是:
添加源 URL 参数指定下一页:
这样做的缺点是,如果他们单击“取消”,他们也会被重定向到此页面。 但您或许可以使用一些 JavaScript 来改变这种行为。
You can use the "source" URL parameter.
For example, if the link to your list is:
Adding the Source URL parameter designates the next page:
The downside to this, is that if they click cancel they will be redirected to this page as well. But you could probably alter this behavior with some JavaScript.