ASP.NET - 更改页面方法中的配置文件信息?

发布于 2024-11-09 12:09:41 字数 402 浏览 0 评论 0原文

我只能获取数据,但是如何设置。

        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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泛泛之交 2024-11-16 12:09:41
 HttpContext.Current.Profile.FieldName = "Set your Value";

有关详细信息,请查看这篇文章ASP.NET 2.0 中的配置文件

 HttpContext.Current.Profile.FieldName = "Set your Value";

For Details please check this Article Profiles In ASP.NET 2.0

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文