如何在代码隐藏中更新 dotnetnuke 用户个人资料图像?

发布于 2024-12-10 01:04:47 字数 467 浏览 0 评论 0原文

我正在构建自己的“用户个人资料”模块,其中选项之一是用户可以更改其默认的 dnn 个人资料图像。我在“在代码后面”执行此操作时遇到问题。我正在使用c#

这就是我到目前为止所拥有的:

UserInfo myDnnUser = this.UserInfo;
myDnnUser.Profile.InitialiseProfile(PortalId);

myDnnUser.Profile.SetProfileProperty("Photo", "new filename");
myDnnUser.Profile.SetProfileProperty("PhotoURL", "new url");

ProfileController.UpdateUserProfile(myDnnUser);

但它不起作用,当我查看 dnn 使用的“文件”表时,它仍然是相同的(旧)文件名。

有什么想法吗?

I am building my own "user profile" module where one of the options, the user can change his default dnn profile image. I am having problems doing this "in the code behind". I am using c#.

This is what I have so far:

UserInfo myDnnUser = this.UserInfo;
myDnnUser.Profile.InitialiseProfile(PortalId);

myDnnUser.Profile.SetProfileProperty("Photo", "new filename");
myDnnUser.Profile.SetProfileProperty("PhotoURL", "new url");

ProfileController.UpdateUserProfile(myDnnUser);

But its not working, and when I view the "File" table that dnn uses, its still the same (old) filename.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

寄风 2024-12-17 01:04:47

涉及三个表:UserProfileProfilePropertyDefinitionFiles

UserProfile 存储 ProfilePropertyDefinitions 的 PropertyValues。

“照片”的预期 PropertyValue PropertyName 是对文件表的 FileID 引用,而不是文件名。在设置照片之前,您需要获取 FileID:

    var objFiles = new FileController();
    FileInfo objFile = objFiles.GetFile("filepath", PortalID);
    myDnnUser.Profile.Photo = objFile.FileId;
    ProfileController.UpdateUserProfile(myDnnUser);

PhotoURL 是一个只读属性,用于检索 UserProfile 的照片属性的 url。

There are three tables involved: UserProfile, ProfilePropertyDefinition and Files.

UserProfile stores PropertyValues for ProfilePropertyDefinitions.

Expected PropertyValue for a "Photo" PropertyName is a FileID reference to the Files table, not a file name. Before setting the Photo, you need to get the FileID:

    var objFiles = new FileController();
    FileInfo objFile = objFiles.GetFile("filepath", PortalID);
    myDnnUser.Profile.Photo = objFile.FileId;
    ProfileController.UpdateUserProfile(myDnnUser);

PhotoURL is a read-only property that retrieves the url for the UserProfile's Photo property.

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