shooter69
Expert Member
Why would this work
protected void Page_Load(object sender, EventArgs e)
{
ucAssign1.ImportID = "2760";
}
But this will not work?
protected void Button1_Click(object sender, EventArgs e)
{
ucAssign1.ImportID = "2760";
}
I need to assign a property in a user control a value upon firing the "Click" event but its not working. Does anyone have a work around?
protected void Page_Load(object sender, EventArgs e)
{
ucAssign1.ImportID = "2760";
}
But this will not work?
protected void Button1_Click(object sender, EventArgs e)
{
ucAssign1.ImportID = "2760";
}
I need to assign a property in a user control a value upon firing the "Click" event but its not working. Does anyone have a work around?