Question

I've got a web page that has the following situation: I want to upload a file, but instead of using a fileupload and then a button to upload, i want a button to launch the browse for files, and when i click OK it uploads the file. I use a javascript function to launch fileupload (onclientclick of my button) but then nothing else happens, i.e, it doesn't go to the onclick on the codebehind

Était-ce utile?

La solution

Call a function from the OnClick call, like:

function fileUpload() {
    //your function to call the JavaScript file selection
    return true;
}

Autres conseils

Place the JavaScript function in the OnClick function and then return true, passing control to the code behind.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top