Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
180
value from HTML input control
posted

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?

Parents
No Data
Reply
  • 37874
    posted

    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.

Children