我在我的 asp.net 页面上使用 ajaxfileupload 控件。上传图片后,我调用 uploadcomplete 方法将图片保存在磁盘上,并使用以下 javascript 显示在图片控件中:
string fileName = Guid.NewGuid() + Path.GetExtension(PhotoAFU.FileName.Trim()); // encrypt filename
string filePath = Path.Combine(storagePath, fileName);
string fileVirtPath = GetImageUrl(fileName);
int rnd = new Random((int)DateTime.Now.Ticks).Next(1, 1000);
ScriptManager.RegisterClientScriptBlock(PhotoAFU, PhotoAFU.GetType(), "img",
String.Format(
@"top.document.getElementById('{0}').src='{1}?x={2}';
top.document.getElementById('{3}').value = '{4}'",
EditPhotoImage.ClientID,
fileVirtPath,
rnd,
UploadedImageFileNameHF.ClientID,
fileName),
true
);
现在我单击保存按钮并尝试使用以下代码获取图像:
Path.GetFileName(EditPhotoImage.ImageUrl) // shows old image
or
Path.GetFileName(PhotoAFU.FileName) // it shows actual image name not encrypted one
但它们都显示旧图像而不是当前图像或实际图像名称而不是加密名称。如何在此方法中从上述方法中获取文件名?我尝试使用 viewstate,但它无法正常工作。