No. Web User Controls should do the job just ok. Maybe you are accessing those
properties at wrong time. Try saving those prop values inside ViewState like:
public string userName
{
get { return (string)ViewState["accessUserName"]; }
set { ViewState["accessUserName"] = value; }
}
But you probably access those values in the same postback, so you must ensure
that
properties are set before they are accessed. Try debuging and see what
exactly is going on.