I have an HTML input and a WebUpload control on a page. How can I get a value from the input control in the OnUploadStarting and OnUploadFinishing events?
Hello,
You should be able to get the value of the input as you normally would, for example:
var value = document.getElementById("inputId").value;
Please let me know if you have any other questions.
How can I access the page control in OnUploadFinishing server event? For example:protected void webUpload1_OnUploadFinishing(object sender, UploadFinishingEventArgs e) { // I need to get page control values here. }
Thanks in advance.