Is it possible to Call C# code from a Telerik radconfirm? I can make it call Javascript, but no server side code. I want the user to click a button which gives them a popupbox (radconfirm). With the radconfirm - if the user selects "yes" the c# code will be executed, if they click "cancel" no code will be executed
<asp:Button
ID="button1"
runat="server"
CssClass="resetOk"
Text="OK"
OnClientClick="radconfirm('<h3 style=\'color: #333399;\'>
Are you sure you want to reset this budget?</h3>',confirmCallBackFn,
330, 100,null,'Confirm Reset'); return false;"
/>