Click here to Skip to main content
15,921,279 members

Comments by ketand1 (Top 1 by date)

ketand1 15-Feb-11 5:06am View    
Hi
You have to create a properties in the user control to access the child controls of the user control
or make all the access specifiers as public to access them out side the user control
For Example return value of text box you should create property like
public String Text
{
get{return textbox1.Text;}
set{textbox1.Text = value;}
}
I thing this is the solution please find whether it is correct or not.


Thanks