我在网站的个人资料页面上使用数据 uri 作为头像图片。(我正在使用 asp.net)个人资料网站正在快速打开,但是当我点击个人资料页面上的链接时,chrome 在左下角显示上传消息,并且正在上传减缓。我无法理解个人资料页面上上传的内容。我还使用配置文件页面的 ispostback 属性控制页面加载。当我删除头像页面加载速度很快。
所以,我的问题是我认为网站正在尝试在每个页面事件上上传数据 uri 图像,因此它会减慢页面速度。但是为什么要上传我不明白。
个人资料页面代码:
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
if (Request.Cookies["UserType"] != null)
{
Session["UserType"] = Request.Cookies["UserType"].Value;
}
if ((string)Session["UserType"] == Contact.EntityLogicalName)
{
CrmConnection = ConnectCrm.Single;
FormsIdentity ident = User.Identity as FormsIdentity;
if (ident != null)
{
...
...
avatar2.ImageUrl = "/assets/avatars/avatar2.png";
IQueryable<Annotation> annotations = AnnotationOperations.SelectAnnotationByObjectId(CrmConnection.Context, new Guid(Id));
foreach (var annotation in annotations)
{
if (annotation.FileName.Contains("avatar"))
{
avatar2.ImageUrl = "data:image/png;base64," + annotation.DocumentBody;
break;
}
}
}
}
else
{
Response.Redirect("~/Default.aspx");
}
}
}
当我单击个人资料页面上的按钮时,母版页在下方,它调用editprofile页面,但速度很慢:
protected void lnbSettings_Click(object sender, EventArgs e)
{
if (this.Page.User.Identity.IsAuthenticated)
{
....
if ((string)Session["UserType"] == Contact.EntityLogicalName)
{
Response.Redirect("~/Members/EditProfile.aspx", false);
}
}
}
EditProfile 页面代码:
protected void Page_Load(object sender, EventArgs e)
{
if (Request.Cookies["UserType"] != null)
{
Session["UserType"] = Request.Cookies["UserType"].Value;
}
if ((string)Session["UserType"] == Contact.EntityLogicalName)
{
CrmConnection = ConnectCrm.Single;
if (!IsPostBack)
{
SetFields();
}
else
{
contact = (Contact)Session["Contact"];
langArr = (new_yabancidil[])Session["LangArr"];
}
}
else
{
Response.Redirect("~/Default.aspx");
}
}