Reputation: 103
I am trying to pop something based on a condition... but it is not working... and I am kind of a newbie at this so I appreciate the help
if (myFileName == OldFileName)
{
btnSubmit.Attributes["OnClick"] = "return confirm('This file already exists, do you want to replace it?');";
}
This is not being call for some reason.. here is the asp code
asp:Button class="Button" ID="btnSubmit" CausesValidation="True" Text="SUBMIT" runat="server"
OnClick="btnSubmit_Click"></asp:Button>
Upvotes: 0
Views: 155
Reputation: 48476
use a ScriptManager.
ScriptManager.RegisterStartupScript()
ScriptManager.RegisterClientScriptBlock()
Upvotes: 3