本文介绍了我在生产中得到了这样的称呼.报表处理期间发生错误.调用目标抛出异常.对象引用未设置为实例的实例.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
.aspx ::
.aspx ::
public void ShowQueryBranchTATCrossed()
{
bool vFlag = false;
try
{
rptViewer.Visible = true;
////rptViewer.LocalReport.ReportPath="C:/Priya Working Folder/WorkingEnvironment/ILeverage2k10/ILeverage2k10/ILev_QueryBranchTATCrossedReport.rdlc";
rptViewer.LocalReport.Refresh();
vFlag = true;
}
catch (Exception Exp)
{
LogEvent(Exp);
vFlag = false;
}
if (!vFlag)
{
ScriptManager.RegisterClientScriptBlock(this, typeof(string), "message", "alert('Unable to retrive the data, please contact system admin.');location.href='ILeverage_Blank.aspx'", true);
}
}
推荐答案
这篇关于我在生产中得到了这样的称呼.报表处理期间发生错误.调用目标抛出异常.对象引用未设置为实例的实例.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!