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

  • SEARCH
  • Home
  • 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'm trying to integrate facebook connect onto my website using my local test server,
my project is a PHP web application. This applies to my test server (local),
I recently deployed my ASP.NET 3.5 application to my test server, a newly installed
On my local test machine it works fine, but on the server it will
I'm trying to test a rest api for upload a local file to a
I am trying to test Google Maps in development sites under IIS. My local
i have piece of code that works fine on my local test server but
When running the django test server on a local project, can you make 400/500
I need to know of a solution to run a local test server through
I have a localhost environment and a test server environment. I write all my

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.