Hi Raman,
One suggestion is that you can use both server side and client side code to achieve your scenario. Please take a look into the following code snippet.
C#:
JavaScript:
Thanks,
Shinu.
One suggestion is that you can use both server side and client side code to achieve your scenario. Please take a look into the following code snippet.
C#:
protected void RadButton1_Click(object sender, EventArgs e){ RadWindowManager1.RadConfirm("Are you sure?", "CallBack", 500, 200, null, "Confirm");}JavaScript:
<script type="text/javascript"> function CallBack(args) { if (args == true) { //write your code } }</script>Thanks,
Shinu.