Hi I am using UI for ASP.NET AJAX Q1 2015 SP1. In my form, some other event I am populating a hidden field (i.e. hdnFolderCreated).
Client Side event below code works
function
disp_confirm() {
alert(
"Process Complete!!! "
+
"\n\n"
+ document.getElementById(
'<%=hdnFolderCreated.ClientID %>'
).value +
"."
+
"\n\nIf required, copy previous Month PDF files to verify the total's "
+
"\nand Standard definitation file into above mentioned folder."
);
}
My question is possible I can display the same alert message in a server side button click event inside a Rad Window? If so how? Thanks for any help.
gc_0620