To display normal alert pop up in the code behind:
ClientScript.RegisterStartupScript(Page.GetType(),
"Alert", "alert('Done perfectly.');", true);
To call a java script function in the code behind:
ClientScript.RegisterStartupScript(Page.GetType(),
"confirmation", "javascript:return confirmation();", true);
(Ths is to call the confirmation java script function I wrote in my previous post.)
Regards,
Ram Reddy Mekha, +91-994-840-4315
http://abhiramreddymekha.blogspot.comPlease Mark as Answer if the post helps you.