Click here to Skip to main content
15,914,416 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Updating the quantity if already exists...... Pin
venu65617-Mar-09 1:59
venu65617-Mar-09 1:59 
GeneralRe: Updating the quantity if already exists...... Pin
RajpootRohan17-Mar-09 2:23
professionalRajpootRohan17-Mar-09 2:23 
GeneralRe: Updating the quantity if already exists...... Pin
venu65617-Mar-09 2:44
venu65617-Mar-09 2:44 
GeneralRe: Updating the quantity if already exists...... Pin
RajpootRohan17-Mar-09 18:24
professionalRajpootRohan17-Mar-09 18:24 
GeneralRe: Updating the quantity if already exists...... Pin
venu65617-Mar-09 19:47
venu65617-Mar-09 19:47 
GeneralRe: Updating the quantity if already exists...... Pin
RajpootRohan17-Mar-09 19:57
professionalRajpootRohan17-Mar-09 19:57 
GeneralRe: Updating the quantity if already exists...... Pin
venu65617-Mar-09 21:27
venu65617-Mar-09 21:27 
QuestionCould not load file or assembly 'App_Code' or one of its dependencies. There is not enough space on the disk. (Exception from HRESULT: 0x80070070) Pin
Mangal Verma16-Mar-09 21:52
Mangal Verma16-Mar-09 21:52 
I am frequently facing this message from my Web Application hosted at third party server.

Problem description is as below:


Could not load file or assembly 'App_Code' or one of its dependencies. There is not enough space on the disk. (Exception from HRESULT: 0x80070070)

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.FileLoadException: Could not load file or assembly 'App_Code' or one of its dependencies. There is not enough space on the disk. (Exception from HRESULT: 0x80070070)

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.

Assembly Load Trace: The following information can be helpful to determine why the assembly 'App_Code' could not be loaded.


WRN: Assembly binding logging is turned OFF.
To enable assembly bind failure logging, set the registry value [HKLM\Software\Microsoft\Fusion!EnableLog] (DWORD) to 1.
Note: There is some performance penalty associated with assembly bind failure logging.
To turn this feature off, remove the registry value [HKLM\Software\Microsoft\Fusion!EnableLog].



Stack Trace:


[FileLoadException: Could not load file or assembly 'App_Code' or one of its dependencies. There is not enough space on the disk. (Exception from HRESULT: 0x80070070)]
System.Reflection.Assembly._nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) +0
System.Reflection.Assembly.nLoad(AssemblyName fileName, String codeBase, Evidence assemblySecurity, Assembly locationHint, StackCrawlMark& stackMark, Boolean throwOnFileNotFound, Boolean forIntrospection) +54
System.Reflection.Assembly.InternalLoad(AssemblyName assemblyRef, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +211
System.Reflection.Assembly.InternalLoad(String assemblyString, Evidence assemblySecurity, StackCrawlMark& stackMark, Boolean forIntrospection) +141
System.Reflection.Assembly.Load(String assemblyString) +25
System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +32

[ConfigurationErrorsException: Could not load file or assembly 'App_Code' or one of its dependencies. There is not enough space on the disk. (Exception from HRESULT: 0x80070070)]
System.Web.Configuration.CompilationSection.LoadAssemblyHelper(String assemblyName, Boolean starDirective) +596
System.Web.Configuration.CompilationSection.LoadAllAssembliesFromAppDomainBinDirectory() +211
System.Web.Configuration.CompilationSection.LoadAssembly(AssemblyInfo ai) +46
System.Web.Compilation.BuildManager.GetReferencedAssemblies(CompilationSection compConfig) +177
System.Web.Compilation.WebDirectoryBatchCompiler..ctor(VirtualDirectory vdir) +267
System.Web.Compilation.BuildManager.BatchCompileWebDirectoryInternal(VirtualDirectory vdir, Boolean ignoreErrors) +39
System.Web.Compilation.BuildManager.BatchCompileWebDirectory(VirtualDirectory vdir, VirtualPath virtualDir, Boolean ignoreErrors) +429
System.Web.Compilation.BuildManager.CompileWebFile(VirtualPath virtualPath) +75
System.Web.Compilation.BuildManager.GetVPathBuildResultInternal(VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) +582
System.Web.Compilation.BuildManager.GetVPathBuildResultWithNoAssert(HttpContext context, VirtualPath virtualPath, Boolean noBuild, Boolean allowCrossApp, Boolean allowBuildInPrecompile) +93
System.Web.Compilation.BuildManager.GetVirtualPathObjectFactory(VirtualPath virtualPath, HttpContext context, Boolean allowCrossApp, Boolean noAssert) +111
System.Web.Compilation.BuildManager.CreateInstanceFromVirtualPath(VirtualPath virtualPath, Type requiredBaseType, HttpContext context, Boolean allowCrossApp, Boolean noAssert) +54
System.Web.UI.PageHandlerFactory.GetHandlerHelper(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) +31
System.Web.UI.PageHandlerFactory.System.Web.IHttpHandlerFactory2.GetHandler(HttpContext context, String requestType, VirtualPath virtualPath, String physicalPath) +40
System.Web.HttpApplication.MapHttpHandler(HttpContext context, String requestType, VirtualPath path, String pathTranslated, Boolean useAppConfig) +139
System.Web.MapHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +128
System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +161




Can any one help me out?
Thanks in advance.
AnswerRe: Could not load file or assembly 'App_Code' or one of its dependencies. There is not enough space on the disk. (Exception from HRESULT: 0x80070070) Pin
Vimalsoft(Pty) Ltd16-Mar-09 21:57
professionalVimalsoft(Pty) Ltd16-Mar-09 21:57 
GeneralRe: Could not load file or assembly 'App_Code' or one of its dependencies. There is not enough space on the disk. (Exception from HRESULT: 0x80070070) Pin
Mangal Verma16-Mar-09 22:10
Mangal Verma16-Mar-09 22:10 
GeneralRe: Could not load file or assembly 'App_Code' or one of its dependencies. There is not enough space on the disk. (Exception from HRESULT: 0x80070070) Pin
Vimalsoft(Pty) Ltd16-Mar-09 22:31
professionalVimalsoft(Pty) Ltd16-Mar-09 22:31 
GeneralRe: Could not load file or assembly 'App_Code' or one of its dependencies. There is not enough space on the disk. (Exception from HRESULT: 0x80070070) Pin
Mangal Verma16-Mar-09 23:19
Mangal Verma16-Mar-09 23:19 
AnswerRe: Could not load file or assembly 'App_Code' or one of its dependencies. There is not enough space on the disk. (Exception from HRESULT: 0x80070070) Pin
N a v a n e e t h16-Mar-09 22:44
N a v a n e e t h16-Mar-09 22:44 
QuestionRun a .exe file that resides in cilent directory from server using VB.net Pin
yoshikev16-Mar-09 21:40
yoshikev16-Mar-09 21:40 
AnswerRe: Run a .exe file that resides in cilent directory from server using VB.net Pin
Christian Graus16-Mar-09 21:45
protectorChristian Graus16-Mar-09 21:45 
GeneralRe: Run a .exe file that resides in cilent directory from server using VB.net Pin
yoshikev16-Mar-09 21:48
yoshikev16-Mar-09 21:48 
GeneralRe: Run a .exe file that resides in cilent directory from server using VB.net Pin
Christian Graus16-Mar-09 21:48
protectorChristian Graus16-Mar-09 21:48 
JokeRe: Run a .exe file that resides in cilent directory from server using VB.net Pin
Brian W King17-Mar-09 5:21
Brian W King17-Mar-09 5:21 
QuestionASP page Error Pin
jitu gupta16-Mar-09 21:03
jitu gupta16-Mar-09 21:03 
AnswerRe: ASP page Error Pin
Christian Graus16-Mar-09 21:13
protectorChristian Graus16-Mar-09 21:13 
QuestionDatabase? Pin
Karthick_gc16-Mar-09 20:50
Karthick_gc16-Mar-09 20:50 
AnswerRe: Database? Pin
Christian Graus16-Mar-09 20:59
protectorChristian Graus16-Mar-09 20:59 
GeneralRe: Database? Pin
Karthick_gc16-Mar-09 21:02
Karthick_gc16-Mar-09 21:02 
GeneralRe: Database? Pin
SachinKumar M16-Mar-09 21:09
SachinKumar M16-Mar-09 21:09 
GeneralRe: Database? Pin
Karthick_gc16-Mar-09 21:12
Karthick_gc16-Mar-09 21:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.