Sign In
Tips and tricks: ASP.NET, IIS and .NET development...
The notes I took while I solve puzzles...
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
About
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
.NET 4.0
.NET Framework
ADPlus
ASP.NET
ASP.NET 2.0
ASP.NET 4.0
Crash
Debug Diagnostic Tool
Debugging
Dump
Free
Hang
IIS 6.0
IIS 7.0
IIS 7.5
Logging
Microsoft
Nasıl yapılır?
Sorun Giderme
Türkçe
Tips and Tricks
Troubleshooting
Visual Studio
WinDBG
Yazılım Geliştrime
Archive
Archives
March 2012
(3)
February 2012
(4)
December 2011
(4)
October 2011
(1)
September 2011
(3)
July 2011
(3)
June 2011
(2)
May 2011
(6)
April 2011
(1)
March 2011
(2)
February 2011
(8)
January 2011
(7)
December 2010
(1)
September 2010
(1)
June 2010
(1)
May 2010
(3)
February 2010
(2)
January 2010
(3)
March 2009
(2)
February 2009
(1)
January 2009
(3)
December 2008
(3)
August 2008
(2)
June 2008
(1)
December 2007
(3)
MSDN Blogs
>
Tips and tricks: ASP.NET, IIS and .NET development...
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Tips and tricks: ASP.NET, IIS and .NET development...
Launch worker process (w3wp.exe) automatically as soon as application pool starts
Posted
2 months ago
by
Ahmet Mithat Bostanci
0
Comments
You can set up an application pool to start automatically but the worker process (w3wp.exe) will actually be launched once a request is made to the web site. However, in some scenarios you may want to have a worker process started automatically whenever...
Tips and tricks: ASP.NET, IIS and .NET development...
Free IIS 8.0 Express Beta is released
Posted
2 months ago
by
Ahmet Mithat Bostanci
5
Comments
We have just released IIS 8.0 Express Beta. Internet Information Services (IIS) 8.0 Express Beta is a free, simple and self-contained version of IIS that is optimized for developers. IIS Express makes it easy to use the most current version of IIS...
Tips and tricks: ASP.NET, IIS and .NET development...
What’s New in IIS 8
Posted
2 months ago
by
Ahmet Mithat Bostanci
0
Comments
With the release of Windows 8 Server Beta, IIS 8 is coming to the world. If you are curious about what is new in IIS 8, you can check the following article: What’s New in IIS 8 http://weblogs.asp.net/owscott/archive/2012/03/01/what-s-new-in-iis...
Tips and tricks: ASP.NET, IIS and .NET development...
Is my web site using Kerberos or NTLM authentication?
Posted
3 months ago
by
Ahmet Mithat Bostanci
0
Comments
If you are not sure if Kerberos or NTLM authentication is used in your web application then you can use the script given in the following blog: http://www.ilinfo.fr/blog/post/Page-de-test-Kerberos-et-de-delegation-ASPX.aspx The blog is in French...
Tips and tricks: ASP.NET, IIS and .NET development...
Windows 8's new logo
Posted
3 months ago
by
Ahmet Mithat Bostanci
0
Comments
Check out the new logo of Windows (will be introduced in Windows 8) from Windows Team's blog: Redesigning the Windows Logo http://windowsteamblog.com/windows/b/bloggingwindows/archive/2012/02/17/redesigning-the-windows-logo.aspx You can also...
Tips and tricks: ASP.NET, IIS and .NET development...
How to add notepad shortcut in "Send to" menu on Windows 7
Posted
3 months ago
by
Ahmet Mithat Bostanci
8
Comments
I found adding notepad shortcut in the "Send to" menu very useful trick as I can send any file to notepad quickly as seen in the screenshot below: Follow the instructions below to add notepad shortcut in "Send to" menu: Type shell:sendto in...
Tips and tricks: ASP.NET, IIS and .NET development...
Easiest way to take your web site offline (IIS 6.0 or IIS 7.5 with .NET 4.0)
Posted
3 months ago
by
Ahmet Mithat Bostanci
5
Comments
If you are running your application within a .NET 4.0 application pool (IIS 7.0 or IIS 7.5) or your web site is configured as an ASP.NET 4.0 web site (IIS 6.0) and would like to show your clients an "under maintenance" page for a limited time, the easiest...
Tips and tricks: ASP.NET, IIS and .NET development...
Public webcast about latest Security Advisory bulletin (2659883 - Vulnerability in ASP.NET Could Allow Denial of Service)
Posted
4 months ago
by
Ahmet Mithat Bostanci
0
Comments
Microsoft will host a webcast to address customer questions on latest published security bulletin about vulnerability in ASP.NET which could allow denial of service: Title: Information About Microsoft's December 2011 Out-of-Band Security Bulletin Release...
Tips and tricks: ASP.NET, IIS and .NET development...
Use "Stopwatch" class to calculate the execution time
Posted
5 months ago
by
Ahmet Mithat Bostanci
1
Comments
Although this class is not famous, it does a great job to calculate the execution time. Usually, the execution time of a code block is calculated by setting a start and stop variable (DateTime) just before and after the code block and then calculating...
Tips and tricks: ASP.NET, IIS and .NET development...
Why does not IIS log requests immediately?
Posted
5 months ago
by
Ahmet Mithat Bostanci
0
Comments
Here is a frequently asked question: why can't I see IIS logs written immediately after a request? The anwer is that the HTTP.SYS buffers the IIS logs and flushes to the disk every 60 seconds because of performance issues. If you are running IIS...
Tips and tricks: ASP.NET, IIS and .NET development...
How to configure Debug Diagnostic to capture Stack Overflow exceptions
Posted
5 months ago
by
Ahmet Mithat Bostanci
0
Comments
I have just found that one of my colleauges, Spike, posted a nice blog article here explaining how to create a StackOverflowException using .NET Framework. He also explained how to find the root cause of the issue with live debugging using WinDBG. ...
Tips and tricks: ASP.NET, IIS and .NET development...
IIS 7.5 - Change in the "application pool defaults" applies to all application pools
Posted
7 months ago
by
Ahmet Mithat Bostanci
0
Comments
I was helping to one of my customers where his Sharepoint web sites stopped working unexpectedly. All of the web sites were failing with HTTP 500 Internal Server Error message. When I checked the details of the error message, I have found that the issue...
Tips and tricks: ASP.NET, IIS and .NET development...
Happy birthday smiley :)
Posted
8 months ago
by
Ahmet Mithat Bostanci
1
Comments
"At 11:44 a.m. on September 19, 1982, a man named Scott Fahlman posted a message to an electronic computer-science department bulletin board at Carnegie Mellon University. And with that simple action he did something wonderful: He became the individual...
Tips and tricks: ASP.NET, IIS and .NET development...
A list of Microsoft's Official Twitter Accounts
Posted
8 months ago
by
Ahmet Mithat Bostanci
1
Comments
I have tried to put together Microsoft's official twitter accounts in a list below. Please let me know through comments section below if you would lke to add others to the list. Microsoft - The official Twitter page for Microsoft http://twitter.com...
Tips and tricks: ASP.NET, IIS and .NET development...
Ten watchwords for Microsoft's Windows 8 conference
Posted
8 months ago
by
Ahmet Mithat Bostanci
1
Comments
An interesting blog is posted on ZDNet: Ten watchwords for Microsoft's Windows 8 conference Summary: Microsoft’s Build conference is going to be full of Windows 8 terms and technologies. Here are 10 of the related codenames and features about...
Tips and tricks: ASP.NET, IIS and .NET development...
Debug Diagnostic Tool (DebugDiag) 1.2 is released
Posted
10 months ago
by
Ahmet Mithat Bostanci
0
Comments
Debug Diagnostic Tool (a.k.a. "Debug Diag" or "DebugDiag") version 1.1 is one of the most popular debugging tools which helps us to collect/analyze crash or hang dumps. However most of the features of the v1.1 is not working on Windows 7 or Windows Server...
Tips and tricks: ASP.NET, IIS and .NET development...
Visual Studio 2010 and .NET Framework 4 Training Kit is available for download
Posted
10 months ago
by
Ahmet Mithat Bostanci
0
Comments
The Visual Studio 2010 and .NET Framework 4 Training Kit includes presentations, hands-on labs, and demos. This content is designed to help you learn how to utilize the Visual Studio 2010 features and a variety of framework technologies including: ...
Tips and tricks: ASP.NET, IIS and .NET development...
No traffic is logged when using Fiddler on localhost
Posted
10 months ago
by
Ahmet Mithat Bostanci
0
Comments
Fiddler is a great tool for logging HTTP/HTTPS traffic in the client side. However, you may see that no traffic is logged if you would like to debug your web site by browsing http://localhost or http://127.0.0.1. If this is your case then you can try...
Tips and tricks: ASP.NET, IIS and .NET development...
IIS services fail to start: "Windows could not start the Windows Process Activation Service - Error 6801: Transaction support within the specified resource manager is not started or was shut down due to an error" when WAS service is started
Posted
11 months ago
by
Ahmet Mithat Bostanci
3
Comments
You may see that IIS related services fail to start and receive "Windows could not start the Windows Process Activation Service - Error 6801: Transaction support within the specified resource manager is not started or was shut down due to an error" error...
Tips and tricks: ASP.NET, IIS and .NET development...
Session_OnEnd or Session_End events in global.asax won't fire if you store ASP.NET sessions out of proc (in State Server or SQL Server)
Posted
11 months ago
by
Ahmet Mithat Bostanci
0
Comments
This is an overlooked behavior which may break your ASP.NET application if you are using Session_OnEnd or Session_End events in Global.asax. Here is a snippet from related article from MSDN: The Session_OnEnd event is only supported when the session...
Tips and tricks: ASP.NET, IIS and .NET development...
How to prevent ILDASM from disassembling my .NET code
Posted
over 1 year ago
by
Ahmet Mithat Bostanci
2
Comments
Long story short – you can use SuppressIldasmAttribute attribute. However, please note that it won’t prevent decompilers (such as .NET Reflector, ILSpy or JustDecompile) from reverse engineering your code. Here are the details: What...
Tips and tricks: ASP.NET, IIS and .NET development...
Decompiler tools for .NET Framework
Posted
over 1 year ago
by
Ahmet Mithat Bostanci
3
Comments
A .NET application is compiled into IL (intermediate language) during compile time and it is compiled into platform specific binary code during runtime by JIT (Just in time) Compiler. You can decompile IL code to get the source code of the assembly. This...
Tips and tricks: ASP.NET, IIS and .NET development...
Happy Birthday Visual Basic
Posted
over 1 year ago
by
Ahmet Mithat Bostanci
0
Comments
Twenty years ago, May 20th, 1991 at Windows World, in Atlanta, Microsoft founder Bill Gates demoed Visual Basic 1.0. We are celebrating 20th birthday of Visual Basic this year. Please read the full story at Visual Basic Team Blog: Happy 20th Birthday...
Tips and tricks: ASP.NET, IIS and .NET development...
Do not collect 32bit process' dumps with 64bit task manager
Posted
over 1 year ago
by
Ahmet Mithat Bostanci
4
Comments
What is a dump file? A dump file is a snapshot of a process' memory written on the disk. You can use a dump file to troubleshoot several issues including crashes, hangs and performance problems. Basically, you collect "crash dumps" if a process quits...
Tips and tricks: ASP.NET, IIS and .NET development...
Press release: Microsoft to Acquire Skype
Posted
over 1 year ago
by
Ahmet Mithat Bostanci
0
Comments
As of today, we have announced that we acquire Skype. Here is one of the most exiciting part of the announcement: With 170 million connected users and over 207 billion minutes of voice and video conversations in 2010, Skype has been a pioneer in creating...
Page 1 of 3 (70 items)
1
2
3