I need a functionality for Itemupdating event on a custom SharePoint list to show a confirmation message to the users as a pop up using C#.
Any help would be appreciated.
I need a functionality for Itemupdating event on a custom SharePoint list to show a confirmation message to the users as a pop up using C#.
Any help would be appreciated.
ItemUpdating is a transitional event that happens only on the server-side so client interaction is simply not possible without breaking the update process itself and forcing a fail of some form back to the client.
Some client-side script that fires prior to the update submission (and perhaps updates a field value that could be used server-side) would be the best way to handle this.