开发者

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 newb开发者_开发技巧ie 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>


use a ScriptManager.

ScriptManager.RegisterStartupScript()
ScriptManager.RegisterClientScriptBlock()

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜