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

how to pass parameters using rad window

1 Answer 300 Views
Window
This is a migrated thread and some comments may be shown as answers.
Uma
Top achievements
Rank 1
Uma asked on 24 Jan 2012, 07:35 AM
Hi,

I am using radwindow. i need to pass value with navigate url.

my code is

 <telerik:RadWindow ID="radPropertyInspector" runat="server" Skin="Default" Modal="true" Behaviors="Default" Height="300px" Width="400px" ReloadOnShow="true" OnClientShow="OnClientshow"
            OnClientClose="OnClientClose" NavigateUrl="NZFPropertyInspector.aspx?docId={}">
            </telerik:RadWindow>

but i have the query string value with in hidden field.

How to pass the value.

Thanks,
Uma


1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 24 Jan 2012, 09:04 AM
Hello,

Try the following.
C#:
RadWindow1.NavigateUrl = "http://www.google.com/search?q=" + Label1.Text;

Also take a look into the following documentation for more.
Using the URL Query String to Provide Arguments to RadWindow

Thanks,
Princy.
Tags
Window
Asked by
Uma
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or