↧
private ArrayList emailList
{
get
{
if (FormState["emailList"] != null)
{
return (ArrayList)FormState["emailList"];
}
else
{
ArrayList list = new ArrayList();
return list;
}
}
set
{
FormState["emailList"] = value;
}
}