Hi All,
I have created one user control page and its has three label on the page and this page register to "Default.aspx". I want to set the value of label from Default.aspx.cs page and display it.
I want to crate user control dynamically(3 times) in "Default.aspx.cs" and the display the page as below format.
label1.text="Hello1"; label2.text="Hello2"; label3.text="Hello3"; ///this is for user1 information
abel1.text="Hello4"; label2.text="Hello5"; label3.text="Hello6";///this is for user2 information
abel1.text="Hello7"; label2.text="Hello8"; label3.text="Hello9";///this is for user3 information
We can see the at single user control page with same label id(label1,label2,label3) 3 time displaying different value. Dependent on number of user to display the data. User count depend on ...
Go to the complete details ...