2011-03-15 2 views
3

내 miniture 웹 응용 프로그램은 쿼리 문자열에 전달 된 항목 코드를 기반으로 SQL을 읽고 차트를 표시합니다. 몇 달 동안 정상적으로 작동했지만 오늘 갑자기 다음과 같은 오류 메시지가 나타납니다.오류 : 10 번 시도 후에 차트에 항목을 저장할 수 없습니다.

Server Error in '/' Application. 
-------------------------------------------------------------------------------- 

Chart cannot save an item after 10 attempts. 
Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.IO.IOException: Chart cannot save an item after 10 attempts. 

Source Error: 

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 

Stack Trace: 

[IOException: Chart cannot save an item after 10 attempts.] 
    System.Web.UI.DataVisualization.Charting.ChartHttpHandler.GetChartImageUrl(MemoryStream stream, String imageExt) +532 
    System.Web.UI.DataVisualization.Charting.Chart.Render(HtmlTextWriter writer) +243 
    System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +240 
    System.Web.UI.HtmlControls.HtmlForm.RenderChildren(HtmlTextWriter writer) +253 
    System.Web.UI.HtmlControls.HtmlForm.Render(HtmlTextWriter output) +87 
    System.Web.UI.HtmlControls.HtmlForm.RenderControl(HtmlTextWriter writer) +53 
    System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +240 
    System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +240 
    System.Web.UI.Control.RenderChildrenInternal(HtmlTextWriter writer, ICollection children) +240 
    System.Web.UI.Page.Render(HtmlTextWriter writer) +38 
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +4240 

-------------------------------------------------------------------------------- 
Version Information: Microsoft .NET Framework Version:2.0.50727.4952; ASP.NET Version:2.0.50727.4955 

답변

2

My DBA가 해결하도록 도와주었습니다. 하드 디스크에 공간이 부족하여 차트에 필요한 TempFolder가 가득 차서 위의 오류에 따라 차트가 저장되지 않습니다.

관련 문제