Domanda

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

È stato utile?

Soluzione

Call a function from the OnClick call, like:

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

Altri suggerimenti

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

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top