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

About RadWindow

1 Answer 65 Views
Window
This is a migrated thread and some comments may be shown as answers.
kbaboon
Top achievements
Rank 1
kbaboon asked on 31 Oct 2008, 08:28 AM

Hi All

I Create Rad Window by Vb.net language on behind code at Page1
this code in the button1 for create rad window
Dim RW As New RadWindow
RW.ID =
"Rad2"
RW.ShowContentDuringLoad = True
RW.Width = 600
RW.Height = 500
RW.NavigateUrl = (
"TestPage2.aspx")
RW.VisibleTitlebar =
False
RW.VisibleStatusbar = False
RW.Modal = True
Me.RadWindowManager1.Windows.Clear()
Me.RadWindowManager1.Windows.Add(RW)
Me.RadWindowManager1.Windows(0).VisibleOnPageLoad = True

 

 

and then On Rad Window will open Page2. On Page2 has button2
i would like to button2 do close rad window pop up and redirect Page1 to New Page.
how can i coding it by vb.net language only or rad window is not support...

Thank a lot

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 31 Oct 2008, 12:31 PM
Hello,

You can refer to the following kb article link which explains how to close the RadWindow on a postback on client side and redirect the parent page.
RadWindow that postbacks

Hope this helps..
Thanks
Princy.

Tags
Window
Asked by
kbaboon
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or