Hi, I have 2 User Controls in an aspx page. When i add Cache or viewstate data in one User control. I am not able to retrieve the data when page is post back. Here is the code: User Controls A: ViewState.Add( "VS" , "Test" ); if (Session[ "S" ] == null ) { Session.Add( "S" , "Test" ); } if (Cache[ "dsSearchResult...