如题:
参考文档的提供的DEMO,如下代码,
using (System.IO.Stream stream = System.IO.File.Open(pathxml, System.IO.FileMode.OpenOrCreate)) {
if (this.FpSpread1.Save(stream, false))
{
Page.ClientScript.RegisterStartupScript(this.GetType(), Guid.NewGuid().ToString(), "alert('保存成功!');", true);
}
else {
Page.ClientScript.RegisterStartupScript(this.GetType(), Guid.NewGuid().ToString(), "alert('保存失败!');", true);
}
}
经常发生失败的情况,经查如果保存过来的数据比较大,均可以会发生失败情况,请问如何避免这种情况? |
|