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

Load on Demand RadPageView

1 Answer 74 Views
TabStrip
This is a migrated thread and some comments may be shown as answers.
Daniel
Top achievements
Rank 1
Iron
Daniel asked on 24 Jun 2009, 12:31 AM
Hi All. This is more an ASP.NET thing but I thought I'd ask. I've successfully implemented a Load on Demand RadPageView. I want to add a RadComboBox on the same page.  I want to pass the value of the RadComboBox to the RadPageView.  Does anyone know how to do this?  Thanks.

Daniel

1 Answer, 1 is accepted

Sort by
0
Daniel
Top achievements
Rank 1
Iron
answered on 24 Jun 2009, 11:03 PM
Found an answer, it's not the most graceful but does the job. In the code behind of web page use:

Page.Items.Add("myID", RadComboBox1.SelectedValue); 

Then call it from the code behind in the user control:

Page.Items["myID"].ToString() 

This worked for me, hope it helps someone else.

Daniel
Tags
TabStrip
Asked by
Daniel
Top achievements
Rank 1
Iron
Answers by
Daniel
Top achievements
Rank 1
Iron
Share this question
or