473,597 Members | 2,145 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

problem with getting out of disk space error when viewing asp.net pages


I'm using Win2K3 Enterprise edition with the latest .NET framework
installed. I have this problem with getting "out of disk space"
errors.

It doesn't happen all the time but it does happen. When I installed
Sharepoint Services I got the error and had to reboot and then
everything was fine. I get it sometime when running aspx pages. It's
very odd. Usually, I can just remove the application and readd it from
the properties menu in the IIS manager (I'm using IIS 6 btw).

Any help that you guys can offer would be appreciated.

Here is a copy of the error message I'm receiving:

There is not enough space on the disk.
Description: An unhandled exception occurred during compilation using
the CodeDomProvider 'Microsoft.CSha rp.CSharpCodePr ovider'. Please
review the stack trace for more information about the error and where
it originated in the code.

Exception Details: System.IO.IOExc eption: There is not enough space on
the disk.

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: There is not enough space on the disk.
]
System.IO.__Err or.WinIOError(I nt32 errorCode, String str) +723
System.IO.FileS tream.WriteCore (Byte[] buffer, Int32 offset, Int32
count) +134
System.IO.FileS tream.FlushWrit e() +55
System.IO.FileS tream.Flush() +39
System.IO.FileS tream.Dispose(B oolean disposing) +32
System.IO.FileS tream.Close() +17

System.CodeDom. Compiler.CodeCo mpiler.FromDomB atch(CompilerPa rameters
options, CodeCompileUnit[] ea) +383
System.CodeDom. Compiler.CodeCo mpiler.FromDom( CompilerParamet ers
options, CodeCompileUnit e) +90

System.CodeDom. Compiler.CodeCo mpiler.System.C odeDom.Compiler .ICodeCompiler. CompileAssembly FromDom(Compile rParameters
options, CodeCompileUnit e) +37
System.Web.Comp ilation.BaseCom piler.GetCompil edType() +227


--------------------------------------------------------------------------------
Version Information: Microsoft .NET Framework Version:1.1.432 2.573;
ASP.NET Version:1.1.432 2.573

Jas Shultz
Open Sky Media
Graphic - Print - Logo
www.openskymedia.com
Jul 19 '05 #1
3 6293
> Description: An unhandled exception occurred during compilation using
the CodeDomProvider 'Microsoft.CSha rp.CSharpCodePr ovider'. Please
review the stack trace for more information about the error and where
it originated in the code.

Exception Details: System.IO.IOExc eption: There is not enough space on
the disk.


http://www.aspfaq.com/5002

--
Aaron Bertrand
SQL Server MVP
http://www.aspfaq.com/
Jul 19 '05 #2
"Jas Shultz" <us****@opensky media.com> wrote in message
news:ln******** *************** *********@4ax.c om...

I'm using Win2K3 Enterprise edition with the latest .NET framework
installed. I have this problem with getting "out of disk space"


Could the problem be just what the error says? That you are out of disk
space (or close to being full)? How much disk space do you have free?

Regards,
Peter Foti
Jul 19 '05 #3
I have 35 Gigs of free disk space on the drive. That's why I wonder
what's causing the error. If I was running low I'd add a new drive and
move the site to the drive. It's odd.

Jas Shultz
Open Sky Media
Graphic - Print - Logo
www.openskymedia.com

On Wed, 3 Dec 2003 12:20:19 -0500, "Peter Foti"
<pe****@systoli cnetworks.com> wrote:
"Jas Shultz" <us****@opensky media.com> wrote in message
news:ln******* *************** **********@4ax. com...

I'm using Win2K3 Enterprise edition with the latest .NET framework
installed. I have this problem with getting "out of disk space"


Could the problem be just what the error says? That you are out of disk
space (or close to being full)? How much disk space do you have free?

Regards,
Peter Foti


Jul 19 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
1679
by: Tony Clarke | last post by:
Hi, I'm haveing some problems I'm trying to generate bar charts dynamically by pulling data from an MS Access databasae using an ODBC connection and then generating the bar charts, this is all on WinXP Pro by the way. I have no problems with getting the data out of the database and sorting it. I was using this tutorial http://www.phpbuilder.com/columns/wiesendanger20001218.php3 as a guidline to generating the images, but nothing seems...
6
5759
by: Hennie de Nooijer | last post by:
Hi, Currently we're a building a metadatadriven datawarehouse in SQL Server 2000. We're investigating the possibility of the updating tables with enormeous number of updates and insert and the use of checkpoints (for simple recovery and Backup Log for full recovery). On several website people speak about full transaction log and the pace of growing can't keep up with the update. Therefore we want to create a script which flushes the...
1
2859
by: Prashant Thakwani | last post by:
Consider a scenario, I am a DBA for the Database server where the size of the hard disk is 100 GB. On that database server, i have the Database whose size is 40 GB. Also, i restrict the size of the database file to 95 GB, by specifying the "maximum file size" to "Restrict file growth" option , under the "file properties". I then copied a DAT ( or some other file ) on the same database server that is having the size of 45 GB. Now...
5
7551
by: Yasaswi Pulavarti | last post by:
does a command like, db2 drop table tabschema.tabname when run from the Aix prompt reclaim the disk space? Are there any other options? How can we make sure the disk space is reclaimed? Thanks, Yasaswi
5
7492
by: Karl | last post by:
Hi, I have some code that will save the contents of a Rich Text Box in either a Text or Rich Text Format file. The code is using the SaveFileDialog and is working correctly. I have been testing the code and added in some exception handling to cater for any problems. During testing I have found that if I attempt to save to a floppy disc that is full, a System.IO.IOException is raied with the message "There is not enough space on the...
2
1272
by: squash | last post by:
There was some disk space issues with my server. As a result any script I had that opened a file for writing would clobber it i.e uncate it to zero length . Since there was no space left on device, nothing would be written to it. Are there any workarounds to this? Does opening the r+ or w+ make a difference instead of just w ?
5
2164
by: Konstantin Andreev | last post by:
Recently I became interested, - Are the data, bulk loaded in the table with LOAD utility, consume the same disk space as loaded with IMPORT utility? The answer turned out to be NOT ! Here is a nutshell description of the test. The testing was done at "DB2/LINUX 8.2.3". Tables for tests: F4106 has 5203 rows, 32 columns. F42199 has 1399252 rows, 245 columns.
20
8678
by: Hemant Shah | last post by:
Folks, I spent better part of morning debugging a problem and it turned out to be DB2_USE_ALTERNATE_PAGE_CLEANING registry variable. I am running DB2 8.2 on AIX 5.3 system: # oslevel 5.3.0.0
2
3437
by: James | last post by:
CASE 1: The following sentences were copied from the book "Administration Guide Performance". "If more pages have been written to disk, recovery of the database is faster after a system crash because the database manager can rebuild more of the buffer pool from disk instead of having to replay transactions from the database log files." My question is:
0
7965
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8271
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8380
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8031
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8258
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
5426
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
3881
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
1493
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
1231
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.