CustomeProfile类,键值对列表未保存

时间:2012-04-26 15:21:03

标签: c# asp.net asp.net-profiles

public class KeyValue : ProfileBase
{
    public KeyValue()
    { }

    public List<KeyValuePair<string, string>> pair
    {
        get { return (List<KeyValuePair<string,string>>)base["pair"]; }
        set { base["pair"] = value; }
    }

    public string Name
    {
        get { return base["Name"] as string; }
        set { base["Name"] = value; }
    }
}

这个CustomProfile类中的问题是什么。我正在保存键值对列表,但是当我访问它时,每对中都显示null,但它正确地给出了名称

0 个答案:

没有答案