SuperUser555
SuperUser555

Reputation: 103

Calling a Javascript function within C#

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

Answers (1)

Related Questions