StringBuilder scriptFunction = new StringBuilder();
scriptFunction.Append("<script language='javascript'>");
scriptFunction.Append("alert('de')");
scriptFunction.Append("</script>");
ClientScript.RegisterStartupScript(GetType(), "alert", scriptFunction.ToString());
Это мой код, и он может работать на page_load, но я хочу, чтобы он выполнялся в событии CustomButtonCallback моей сетки devexpress.Там нет ошибки, но он не показывает предупреждение тоже.У вас есть идеи?
KR,
Çağın