I have a Submit button with code behind that evaluates stuff in c#, the problem is that I also want to add a function in javascript that asks "This file already exists, do you want to replace it?
So my question is how can I trigger both?
OnClick="myC#mehod" and also OnClientClick = return (some javascript);
Can I do this?...