perform the resetting of the Label Using JavaScript where you run this command
Reset a label control Me.lblError.Text = ""
on the ClientClick of your button call a Javascript Function to change the innerText property of your Label.
eg:
<script language = "Javascript">
function resetLabel()
{
document.getElementByID(lb
}
</script>
Main Topics
Browse All Topics





by: crisco96Posted on 2007-06-15 at 05:13:01ID: 19291026
You only get one response, you can use it to either change the label or to prompt the user to download the pdf, not both.
What I would suggest is writing some javascript that will hide the error when your download pdf button is clicked, that way you can still download the pdf.
Another thing you might want to do is open a new window when downloading the pdf.