You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
520 B

Public Class test
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
End Sub
Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim newwindow As New Telerik.Web.UI.RadWindow
newwindow.NavigateUrl = "~/UserControls/Dialogbox.aspx"
newwindow.ID = "RadWindow1"
newwindow.VisibleOnPageLoad = True
RadWindowManager1.Windows.Add(newwindow)
End Sub
End Class