redirect item added in sharepoint list -


How can I redirect to a "thank you" page after a user has entered a new item in the custom list .

In a way I can think that item is an item linking receiver, but is there a CAM method to do this?

You can use the "source" URL parameter. For example, if you have a link to your list:

  http: //server/SiteCollection/Site/List/MyCustomList/NewForm.aspx  

source Adding the URL parameter displays the next page:

  http: /server/SiteCollection/Site/List/MyCustomList/NewForm.aspx?Source=http://server/SiteCollection/Site/ThankYou The downside of .aspx  

is that if they click Cancel, they will be redirected to this page. But you can probably change this behavior with some javascript.


Comments