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

Was it helpful?

Solution

Call a function from the OnClick call, like:

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

OTHER TIPS

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top