Good Day to All, I need to excecute a client script before OnLoggedOut event of Login status control of asp.net

I've tried to put

LoginStatus1.Attributes.Add("onclick", "javascript:limparDadosSalvamentoAutomatico();");

but it does not work.

Thanks

有帮助吗?

解决方案

You need to override the Href attribute

LoginStatus1.Attributes["href"] = string.Format("javascript: limparDadosSalvamentoAutomatico(); __doPostBack('{0}','')", loginStatus.Controls[0].UniqueID);

其他提示

Try this:

System.Web.UI.ScriptManager.RegisterClientScriptBlock(Page, GetType(Page), "Script", "yourfunction();", True)
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top