Sending parameter from any user control to another user control

cenkgercek

Newcomer
Joined
Sep 24, 2003
Messages
1
Location
Turkey
Hi there!

I've two different user control (.ascx) in one .aspx page..
I want to send any parameter from one user control to another

i.e. when change the selection of a dropdownlist , system will send
selecteditem value to other user control as a parameter...

Thx
 
How about using the dropdown list selected item change event to save the item's value property to a value in session state? I believe this will work for any user control as long as it looks for the value.
 
Back
Top