| protected void RadGrid1_ItemCommand(object source, GridCommandEventArgs e) |
| { |
| if (e.CommandName == "ActionName") |
| { |
| String ScriptJs = "<script language=JavaScript>"; |
| ScriptJs += "{"; |
| ScriptJs += "ShowConfirm('ConfirmText')"; |
| ScriptJs += "}"; |
| ScriptJs += "</SCRIPT>"; |
| labALERT.Text = ScriptJs; |
| PlaceHolder1.Visible = true; |
| e.Canceled = true; |
| } |
| <script type="text/javascript"> |
| function ShowConfirm(text) |
| { |
| radconfirm(text, confirmCallBackFn, 200, 100, '', ' '); |
| return false; |
| } |
| function confirmCallBackFn(Conferma) |
| { |
| if (Conferma) |
| { |
| [...javascrip actions if OK ...] |
| } |
| else |
| { |
| [...javascrip actions if CANCEL...] |
| } |
| } |
| </script> |
<
button class="qsfButtonBig" style="width: 100px" onclick="radprompt('<em><span style=\'color: #000099;\'>Please enter your email address:</span></em>', promptCallBackFn, 330, 100, null, 'Forgot Password Manager', ''); return false;">Forgot Password</button>

Would someone please post an example of using RadUpload within a Master Page using a RadAjaxManager, on a content page with RadAjaxManagerProxy.
I have seen the threads dealing with setting the RadAjaxManager.ClientEvents-OnRequestStart property. But it does not address doing this with RadAjaxManager.
Currently, I can get RadUpload to work if I remove the entire RadAjaxManagerProxy structure from the content page. This is not acceptable, because my project specs require ajax functionality. It would be OK to disable ajax and do a full page postback if the request contains an upload.