I am currently in the process of creating a website that utilizes Javascript and Asp.net. My code contains numerous functions on the client side, within my html code, while my server side functions are called using a webservice.
How can I ensure that my client-side function successfully triggers the execution of my server-side function?
I am concerned about the security implications of someone potentially running my server-side code with their own function. It is possible for them to copy my client-side codes to their own page and execute it there.
Would implementing session management be a viable solution to address this security issue?