tags:

views:

14

answers:

0

Hi all,

I have a Web user control that consists of a dropdownlist which bind to an autoPostBack event when selectedindexchanged. I assign the selected value to a public property.

But when my aspx page try to read that property, I got empty value because the aspx page get executed before web user control(I think). Should web user control be used this way? How come properties in user control get assigned so late in the life cycle.

Thanks.