Redirect using sharepoint

When the list item is added to the sharepoint list, I want to redirect to the page with thanks.

how can i do this in itemreceiver?

+3
source share
2 answers

I think you could redirect the ItemAdding event. But I would not recommend using event receivers for anything like that at all. Better create your own ASPX page for the new item, add the list item programmatically when the user clicks OK. When the list item has been added, you are redirected to the welcome page from your custom ASPX page.

+4
source

Source: https://habr.com/ru/post/1711348/


All Articles