Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 457307
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T22:33:29+00:00 2026-05-12T22:33:29+00:00

My local test server crashes as soon as I’m trying to write to a

  • 0

My local test server crashes as soon as I’m trying to write to a logfile. I’m using this for an ASP.NET-Page, codebehind is C#.

Structure:

/
 Functions.cs
 index.aspx
 index.aspx.cs

I create an instance of Functions as my index.aspx loads. In Functions, I define a function for logging, which is called from index.aspx.cs and looks like this:

if (_WriterOpen == false)
{
    _Writer = new StreamWriter(_WorkingDir + _Logfile, true);
    _WriterOpen = true;
    _Writer.AutoFlush = true;
}
_Writer.WriteLine(DateTime.Now.ToString() + ": " + String.Format(Note, Args));

_Writer is defined globally for the Class and contains, as you see, a StreamWriter. The class itself has a destructor to close any connections to the files;

~Functions()
{
    _Writer.Flush();
    _Writer.Close();
    _Writer.Dispose();
}

So, when I open up my page, the logs are written but then the server crashes. So I assume the problem is somewhere in the descructor, but I can’t figure out why…

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T22:33:30+00:00Added an answer on May 12, 2026 at 10:33 pm

    I’d recommend the using statement which automatically invokes the dispose call. For your purposes the code would look something like:

    StreamWriter _Writer;
    
    using(_Writer)
    {
        if (_WriterOpen == false)
        {
           _Writer = new StreamWriter(_WorkingDir + _Logfile, true);
           _WriterOpen = true;
           _Writer.AutoFlush = true;
        }
        _Writer.WriteLine(DateTime.Now.ToString() + ": " + String.Format(Note, Args));
    }
    

    Note I haven’t tested this out but it should work (or at least be close). I’ll update if needed after checking it out

    Also see the following two articles:
    Article 1
    Article 2

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I test my app only on local cassini web server, and I get strange
i have piece of code that works fine on my local test server but
I have a local test/development server (HTTP, of course), listening to port 8000. I'm
I want to test some PHP on my local machine running Windows XP Professional.
for running it in local system , i use REGEDIT.EXE /S test.reg how to
Using (local) in the connection string doesn't work on my cluster. I'm assuming it's
I currently use my local web server to allow costumers to preview some applications
I'm using Dreamweaver to publish my website to the web server. I have a
I'm working on an ASP.NET MVC site which will have a database. While I'm
I have a small local network. Only one of the machines is available to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.