ASP.NET - 更改页面方法中的配置文件信息?
我只能获取数据,但是如何设置。
ProfileBase pc = HttpContext.Current.Profile;
pc.PropertyValues["field"] = false; //error
pc.Save();
'''''''''''''
好的,我无法从 webmethod 访问 HttpContext.Current.Profile.FieldName,但我可以:
projectPage thisPage = new projectPage ();
thisPage.updateProfile(HttpContext.Current.User.Identity.Name);
I can only to get data, but how can I set.
ProfileBase pc = HttpContext.Current.Profile;
pc.PropertyValues["field"] = false; //error
pc.Save();
'''''''''''''
Ok, I dont have access to HttpContext.Current.Profile.FieldName from webmethod, but i can:
projectPage thisPage = new projectPage ();
thisPage.updateProfile(HttpContext.Current.User.Identity.Name);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有关详细信息,请查看这篇文章ASP.NET 2.0 中的配置文件
For Details please check this Article Profiles In ASP.NET 2.0