How to communicate between ASP.net custom controls
Posted
by ForeverDebugging
on Stack Overflow
See other posts from Stack Overflow
or by ForeverDebugging
Published on 2010-04-29T08:06:49Z
Indexed on
2010/04/29
8:27 UTC
Read the original article
Hit count: 395
usercontrols
|ASP.NET
I'm using two custom controls. One gathers the criteria for a search, and the other displays a list. These two controls need to remain seperate for the time being.
What is the best method of transfering data from the search control, to the list control?
I'm thinking of ViewState, Session or wrapping both within a UpdatePanel and using custom events??
© Stack Overflow or respective owner