if (IsPostBack)
{
action = Request.QueryString["Action"].ToString(); //action id 非常重要 ,如果不添加会出现 执行错误,出现无法更新画面
if (action != "Create")
{
formid = Request.QueryString["form_id"].ToString();
ShowFiles(formid); //如果不添加 showfiles 函数 点击下载文件按钮后自动 回发显示无法下载
}
}
没有添加
ShowFiles(formid); //如果不添加 showfiles 函数 点击下载文件按钮后自动 回发显示无法下
所致
}