如何在代码隐藏中更新 dotnetnuke 用户个人资料图像?
我正在构建自己的“用户个人资料”模块,其中选项之一是用户可以更改其默认的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
涉及三个表:
UserProfile
、ProfilePropertyDefinition
和Files
。UserProfile 存储 ProfilePropertyDefinitions 的 PropertyValues。
“照片”的预期 PropertyValue PropertyName 是对文件表的 FileID 引用,而不是文件名。在设置照片之前,您需要获取 FileID:
PhotoURL 是一个只读属性,用于检索 UserProfile 的照片属性的 url。
There are three tables involved:
UserProfile
,ProfilePropertyDefinition
andFiles
.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:
PhotoURL is a read-only property that retrieves the url for the UserProfile's Photo property.