How to pass the values between the usercontrol
-
Hello All, I have a query, In my page i have 2 usercontrols, i want to pass values from one usercontrol to another usercontrol. please help me how can i do it? Thanks
Praveen Kumar.R
-
Hello All, I have a query, In my page i have 2 usercontrols, i want to pass values from one usercontrol to another usercontrol. please help me how can i do it? Thanks
Praveen Kumar.R
-
userControl1.MyProperty = userControl2.MyProperty
Or something like this...Paul Marfleet "No, his mind is not for rent To any God or government" Tom Sawyer - Rush
Hi Paul, Sorry i cant get you please explain some brief..
Praveen Kumar.R
-
Hi Paul, Sorry i cant get you please explain some brief..
Praveen Kumar.R
praveenkumar_mca wrote:
Sorry i cant get you please explain some brief..
He is telling you to create public properties in the user controls and get/set it.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
-
praveenkumar_mca wrote:
Sorry i cant get you please explain some brief..
He is telling you to create public properties in the user controls and get/set it.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions
Yes i created public property in usercontrol. i want to take that value in another user control not in page.
Praveen Kumar.R
-
Yes i created public property in usercontrol. i want to take that value in another user control not in page.
Praveen Kumar.R
You probably need to make use of sessions.
All C# applications should call Application.Quit(); in the beginning to avoid any .NET problems.- Unclyclopedia My Website | Ask smart questions