*编辑头像:
|
<%
if (this.HeadPortraitUrl != null)
{
//存在头像
%>
<%= new HtmlImg(this.HeadPortraitUrl, this.User.TrueName + "的头像") { ID = "imgHeadPortrait", Width=120, Height=120, OnErrorImg = SettingGroup.DefauteUserImg }%>
<%
}
else
{
//不存在头像
%>
<%= new HtmlImg(SettingGroup.DefauteUserImg, this.User.TrueName + "的头像") { ID = "imgHeadPortrait", Width=120, Height=120 }%>
<%
}
%>
<%= new HtmlHidden("HeadPortrait", this.User.HeadPortrait)%>
|