문제

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