Sign In
Programming tidbits: store & retrieve
Coding & debugging: The more you'll do it, the better you'll do it!
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
ASP.NET
C#
C++
CSS
Debugging
Design patterns
Diagnostics
ETW
interview
Multithreading
Performance
Performance counters
personal development
Registry Editor
Session State
sos
Stress
Toastmasters
UE
Visual Studio
WCF
WER
women
WS-Discovery
Archive
Archives
October 2010
(2)
February 2010
(3)
October 2009
(2)
August 2009
(1)
July 2009
(1)
June 2009
(1)
May 2009
(1)
April 2009
(2)
March 2009
(1)
February 2009
(2)
January 2009
(3)
October 2008
(1)
September 2008
(3)
August 2008
(2)
July 2008
(2)
June 2008
(4)
June, 2008
MSDN Blogs
>
Programming tidbits: store & retrieve
>
June, 2008
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Programming tidbits: store & retrieve
Server.Transfer / Response.Redirect
Posted
over 4 years ago
by
OanaPlaton
1
Comments
Server.Transfer and Response.Redirect are causing a new page to be processed, but the big difference is how they are doing it. - Server.Transfer terminates the execution of the current request (Response.End) and begins execution of a new request using...
Programming tidbits: store & retrieve
ArgumentException when adding objects in Session: Item has already been added to the dictionary
Posted
over 4 years ago
by
OanaPlaton
2
Comments
Did you ever see this ArgumentException when you innocently tried to add something to session? I recently saw an instance when someone got this exact error. Basically, they had a couple of pages that ran just fine most of the times; but under high load...
Programming tidbits: store & retrieve
Attach debugger across different logon sessions
Posted
over 4 years ago
by
OanaPlaton
0
Comments
Attaching a debugger to a service/application in a different logon session might be a little tricky. Every time a successful authentication occurs on the machine, a new logon session is created. So, when you log on interactively => the system creates...
Programming tidbits: store & retrieve
Visual Studio 2008: Missing items from toolbox
Posted
over 4 years ago
by
OanaPlaton
0
Comments
A couple of days ago I reinstalled VS 2008 RTM version and I happily tried to create a website. Unfortunately, my productivity was totally ruined ‘cause most of the toolbox items were missing. To be exact, I only had the HTML tab. Here are the steps...
Page 1 of 1 (4 items)