我正在使用 asp.net 文件上传控件
我将图像作为UserID+"ProfilePic"
. 上传后,我通过后面的代码将图像 src 设置为此
string FolderPath = System.Configuration.ConfigurationManager.AppSettings["PATH"].ToString();
string assoid = HttpContext.Current.Session["strAssociateId"].ToString()+"ProfilePic.jpg";
if (FileUpload1.HasFile)
{
try
{
string fileName = FileUpload1.FileName;
FileUpload1.PostedFile.SaveAs(FolderPath +assoid);
string imagePath = "serverpath" +assoid;
face_crop_original.Src = imagePath; //Problem is here
}
}
所以这里发生的是图像正在上传,但是当我设置image.Src=xxxx
它时,它会从缓存中获取旧图像!请帮忙。