我看到下面的異常。未將對象引用設置爲對象的實例
System.NullReferenceException:未將對象引用設置爲對象的實例。 at System.Web.Util.StringUtil.memcpyimpl(Byte * src,Byte * dest,Int32 len) at System.Web.Util.StringUtil.UnsafeStringCopy(String src,Int32 srcIndex,Char [] dest,Int32 destIndex,Int32 LEN) 在System.Web.HttpWriter.Write(字符串或多個) 在System.Web.HttpResponse.Write(字符串或多個)
我已經在上下文以下檢查到我響應。
return !(context == null || context.Response == null ||
context.Response.OutputStream == null ||
!context.Response.OutputStream.CanWrite);
任何人都可以提示什麼可能會導致此?
//獲取文本書寫器的本地副本 \t \t \t TextWriter writer = context.Response.Output; \t \t \t \t \t \t //寫出消息映射 \t \t \t writer.Write( 「輸出數據...」); – user68575 2009-02-19 19:40:21