Posted on: 6/25/2015 12:56:34 PM | Views : 704

1. I have a web user control registered inside aspx
2. Another user control dynamically adding inside the 1st user control, which has only one textbox named as TextBox1
3. On POST, I am seeing that entered values are keeping inside TextBox1 and usercontrol also persisting
Now issue is that once I am trying to access the value from code behind using "TextBox1.Tex", it's showing empty. I am seeing the value in UI and also seeing the value under Request.Form. Then why TextBox1.Tex shwing empty.  I am adding the 2nd usercontrol inside Page_Load/PageInit to make it persits across POST like below pasted code. Any help here would be appreciated.
 
public partial class WebUserControl1 : System.Web.UI.UserControl { private UserC ...

Go to the complete details ...