First off I am just learning .NET so bare with me.
I am using a custom Membership Provider to manage users. I have a Login control that uses this custom provider and works fine. I can login and the...
Ok, so I made a few assumptions.
Here is a basic outline of how I handle this issue.
I assume you have a page and you are uploading a file. You want to upload the file, but not refresh the entire...
After you upload the file, you can use javascript to add a hidden field that holds the name of the file.
I do something similar for one of my projects.
If that's the case then I guess you can just hardcode it.
Give the select element an id like....
<select id="Q2" name="Question2" size="2" onchange="check(this.value)">
onkeyup is going to fire for every character they type in. Is this what you really want to do?
Perhaps you want to use onblur so that when they move the focus from the text box it fires?
<body onload="check();"> should work, but you are not passing anything to the function.
You need a more generic function to check the skip pattern on the page, something like....<body...
Well, you want to pass a value to showUser(). The way you have it setup you are passing a variable that has no value. Do you mean to put showUser('mnemonic')?
Or why not use this.value as you did...