I am using ASP.NET Ajaxcontrol toolkit in my project and want to upload the same file twice (consecutively), this dosent happen at all (control dosent initate any event).
I saw the source code of the control and the event to initiate a upload call is input type="file" onchange and saw that the onchange event dosent get fired at all if we select the same file again.
If we (human user) clear the file name in the box provided and then select the same file again then then event dose gets fired.
So i tried to clear the value using JavaScript but found that the Value property is readonly in latest version of IE.
I have a also tried to replace the input=file type with new one in JQuery and also used one of the property of control called PersistFile="false"
Tried all of these Attempted Solution 1