I\'m developing an ASP.NET application with C# and Ajax.
I have a page that holds user controls loaded dynamically. I need to pass some data (integer values and some
Setup public properties within your user control.
public string TestValue { get;set;};
And then when you put your user control in your aspx page:
You can also change the values within your code behind:
uc1.testValue = "some value";