在ASP.NET2.0的web.config中,可以设置Profile属性,比如:
<add name="Favorites" serializeAs="Binary" type="xx.Favorites" allowAnonymous="true" />
如果我想保存泛型类型,应该怎么设置呢?比如,一个System.Collections.Generic.List<MyClass>?直接把这个填到上面的type属性里面是不行的。
希望不要凭感觉回答,最好能测试成功之后再告诉我,谢谢!
System.Collections.Generic.List 在这里,直接写成: System.Collections.Generic.List`1[MyClass]
当然,假如MyClass是另外一个程序集的,那么你要多加一个括号,如: System.Collections.Generic.List`1[[MyClass, MyClassLibrary]]
非常不幸的告诉你,我尝试了几种办法,行不通~~~~~~
同丁学。。。 很快呀