Hi,
i add user control dynamcly to the page and trying to save to viewstate when i triyed to save the placeholder to the view state i got this error " PlaceHolder is not mark as serializable."
here is my code
Controls_PriceControl ctrl = (Controls_PriceControl)LoadControl("../Controls/PriceControl.ascx");
plcPrices.Controls.Add(ctrl);
ViewState["plcPrices"] = plcPrices;
can you assiset me with this issue ?
thanks !