This topic will walk you through setting C1Dialog as a modal dialog box in Design View, in Source View, and in Code.
In Design View
Complete the following steps:
In Source View
Complete the following steps:
<cc1:C1Dialog>
tags:
To write code in Source View
In Code
Add the following code to the Page_Load event to set C1Dialog's Modal property.
To write code in Visual Basic
Visual Basic |
Copy Code
|
---|---|
Me.C1Dialog1.Modal = True |
To write code in C#
C# |
Copy Code
|
---|---|
this.C1Dialog1.Modal = true; |