Hello, I am currently working on retrieving videos from a database, but I have encountered an issue with the video saving option.
When a user right-clicks on the video, they are able to save it in their system's storage. What I would like to achieve is to disable the right-click option so that users cannot easily save the video by right-clicking. I am looking for a way to prevent the right-click event on the video player below:
<video src='<%# "VideoHandler.ashx?id=" + Eval("ID") %>' width="220" height="200" controls="" preload=""></video>
I am seeking a solution to disable the right-click option for this video player.
Thank you.