Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: ASP.NET 成员资格 (MVC) 中的强类型配置文件值
目前我正在使用它在配置文件中插入数据,profile.SetPropertyValue("prop", data);但我想知道有什么方法可以使用类似的东西profile.prop = data;而不是profile.SetPropertyValue("prop", data);在配置文件中插入数据,并在下拉列表中获取`配置文件属性。
profile.SetPropertyValue("prop", data);
profile.prop = data;
如果我理解得很好,您可以通过创建继承的配置文件(来自 ProfileBase)来做到这一点
不确定这是否仍然是“最新的”,但似乎在这里得到了很好的解释:
http://odetocode.com/articles/440.aspx