Hi.. I have an ajax panel and a radgrid within it...
The ItemCommand calls the following.. But nothing is displayed.. what I am I doing wrong.? thanks again
private void ShowAlert()
{
string script = "<SCRIPT LANGUAGE='JavaScript'> ";
script +=
"alert('HELLO');";
script +=
"</SCRIPT>";
this.RadAjaxPanel1.ResponseScripts.Add(script);
}