我是新來的這所以道歉,如果它是一個容易後:刷新頁面保存文件
我有在它的iframe網頁,在iframe的代碼上傳文件到文件夾。
一旦文件上傳,我想刷新列出上傳文件的父頁面。
這是觸發上傳文件的代碼:
void Button1_Click(object Source, EventArgs e){
if (File1.Value == ""){
Span1.InnerHtml = "Error: you must enter a file name";
return;
}
if (File1.PostedFile != null){
try{
File1.PostedFile.SaveAs(Server.MapPath(Request.QueryString["fpath"]+"\\")+File1.Value);
Span1.InnerHtml = "File Uploaded";
}
catch (Exception exc){
Span1.InnerHtml = "Error saving file" + File1.Value + "" + exc.ToString();
}
}
}
我希望我可以只是堅持一個 window.parent.location.href = window.parent.location.href; in saveas line
看看這個答案:http://stackoverflow.com/questions/5351342/reload-parent-window-from-within-an-iframe – wicker95