Hi All,
I have got a business condition. Depending upon the result i have to show radwindow else do some other thing. I though of adding client side script from server side. The code is somewhat like this
I have got a business condition. Depending upon the result i have to show radwindow else do some other thing. I though of adding client side script from server side. The code is somewhat like this
if
(test)
{
String strscript = "<script language='javascript' type='text/javascript'>";
strscript +=
"var oWnd = window.radopen('Default2.aspx', 'radwindow');";
strscript +=
"</script>";
Page.RegisterStartupScript(
"test", strscript);
}
But it is not working beacuse of error in javascript. Can any one you help me here please. A demo example would be appreciated
Rakesh