This is a migrated thread and some comments may be shown as answers.

Show Popup or alert like in win forms (Pause server side execution)

0 Answers 66 Views
Window
This is a migrated thread and some comments may be shown as answers.
Shinu
Top achievements
Rank 2
Shinu asked on 13 Mar 2014, 09:43 AM
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#:
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.

No answers yet. Maybe you can help?

Tags
Window
Asked by
Shinu
Top achievements
Rank 2
Share this question
or