Sign in
My ramblings on ASP.NET and IIS
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
.Net
500.19
503
ASP
ASP.NET
Chart
Chunk
compdyn.dll
Consumer
Free
GC
IE 8
IIS 7
IIS 7.5
Kernel Mode Cache
Log Parser
Memory leak
MS11-100
Script
Service Unavailable
SharePoint
VS 2008
web service
Windows 8
WMI
Archive
Archives
March 2013
(2)
February 2013
(1)
January 2013
(2)
November 2012
(1)
October 2012
(3)
August 2012
(5)
June 2012
(2)
May 2012
(1)
April 2012
(6)
March 2012
(7)
February 2012
(1)
January 2012
(5)
September 2010
(1)
August 2010
(2)
July 2010
(2)
May 2010
(2)
April 2010
(1)
March 2010
(1)
January 2010
(1)
December 2009
(4)
September 2009
(1)
August 2009
(5)
July 2009
(3)
June 2009
(2)
May 2009
(5)
April 2009
(3)
March 2009
(1)
December 2008
(1)
November 2008
(1)
October 2008
(1)
September 2008
(1)
August 2008
(1)
July 2008
(4)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
My ramblings on ASP.NET and IIS
visual studio 2008 sp-1 skips breakpoint / You cannot get the breakpoints in external JS files to get hit when that code is called from a popup window
Posted
over 4 years ago
by
jaskis
0
Comments
Quick post on two new issue on the block related to Debugging/Breakpoint in Visual Studio 2008 After installing VS2008 SP1 , single stepping through code does not work, misses break points and generally, it is unpredictable and unusable. It will...
My ramblings on ASP.NET and IIS
The Crash saga continues and expand further to ie 7 and firefox 3
Posted
over 4 years ago
by
jaskis
0
Comments
Following my previous post after uninstalling IE 8 from the my Dell Vista Laptop and restoring back to IE 7 was of no help. IE 7 was also crashing as soon as I start typing URL in the address bar after opening where as Firefox crashes on opening...
My ramblings on ASP.NET and IIS
How to un-install IE8 from the vista box
Posted
over 4 years ago
by
jaskis
0
Comments
On my home Vista laptop I got a weird problem with IE8 may be due to some malwares.Whenever I try to open IE 8 it prompts me ‘your last session closed unexpectedly ‘ blah blah . Clicking on either of option provided.It crashes iexplore.exe Fastest solution...
My ramblings on ASP.NET and IIS
Deadlock when storing Asp.net sessions in SQL server during peak load
Posted
over 4 years ago
by
jaskis
0
Comments
<Snip> When there is more than 1 server in web farm scenario it is an obvious choice to go for session out-of-proc either with SQL server or State server. While storing session with SQLServer if you see issues with SQL deadlock during peak loads...
My ramblings on ASP.NET and IIS
LogParser: Filter records for specific time frame/date
Posted
over 4 years ago
by
jaskis
0
Comments
Today using Logparser for parsing the ETL file.I did spend some time on filtering it right way to see the activity for specific time frame. Thought to share with you. In ETW file we’ve TimeStamp column that contains value like "2009-07-31 13:34:42"...
My ramblings on ASP.NET and IIS
Using ProcDump.exe to monitor w3wp.exe for CPU spikes
Posted
over 4 years ago
by
jaskis
0
Comments
<Snip> Procdump is a light weight Sysinternal's command-line utility whose primary purpose is monitoring an application for CPU spikes and generating crash dumps during such spikes which an administrator or developer can use to determine the cause...
My ramblings on ASP.NET and IIS
503 service unavailable due to “The Module DLL …compdyn.dll failed to load”
Posted
over 4 years ago
by
jaskis
1
Comments
Quickly helping one of colleague where after restoring applicationhost.config from the back up on win2k8 IIS 7 we started receiving 503 Service Unavailable on the browser. As the very first step was to check event viewer where we had the following...
My ramblings on ASP.NET and IIS
Uploading a file using FileUpload control fails in IE8
Posted
over 4 years ago
by
jaskis
0
Comments
This week I wrote new blog post on our team blog webtopics which talks about above error and reason for it .. Check it out here here : http://blogs.msdn.com/webtopics/archive/2009/07/27/uploading-a-file-using-fileupload-control-fails-in-ie8.aspx Till...
My ramblings on ASP.NET and IIS
IIS7:Classic ASp :http 404.3 / An error occurred on the server when processing the URL. Please contact the system administrator
Posted
over 4 years ago
by
jaskis
6
Comments
While working with classic ASP on my Vista IIS 7 box.I encountered two different problems: Firstly if you migrated your applications to IIS 7 or developing your new asp application and on browsing the asp page if you encountered error like 404.3 “ HTTP...
My ramblings on ASP.NET and IIS
Intermittently System.Web.HttpExceptions(A field or property with the name <columnName> was not found on the selected data source) is thrown when the application is under heavy load
Posted
over 4 years ago
by
jaskis
0
Comments
This week I wrote new blog post on our team blog webtopics which talks about above error and reason for it .. You can visit here : http://blogs.msdn.com/webtopics/archive/2009/06/19/intermittently-system-web-httpexceptions-a-field-or-property-with-the...
My ramblings on ASP.NET and IIS
IIS 7 –Getting 500.19 – Internal Server error on new virtual directory
Posted
over 4 years ago
by
jaskis
0
Comments
Working today on my Vista when I Added New Virtual Directory from IIS manager pointing to newly created folder on Desktop and upon browsing it ended with 500.19 on browser Next thing came in my mind was to compare permission on new folder on Desktop(even...
My ramblings on ASP.NET and IIS
IIS7: 503 Service Unavailable due to autostart=false for app pool
Posted
over 4 years ago
by
jaskis
1
Comments
While setting up repro for one of the customer on my Vista IIS 7.I ran into couple of issue(i’ll post both) of my own.My application gave up with "Service Unavailable" "HTTP error 503" No matter whatever I browse .htm , aspx everything...
My ramblings on ASP.NET and IIS
best practice when dealing with dynamic control issues
Posted
over 4 years ago
by
jaskis
2
Comments
In 3 years at PSS I've worked on many issues related Dynamic Control i.e 1) Controls not able retain value on postback. 2) Controls getting disappeared on postback 3) Event handler not fired on first click works fine on second click 4) Viewstate issues...
My ramblings on ASP.NET and IIS
Using microsoft.web.administration to query iis7 as non-admin
Posted
over 4 years ago
by
jaskis
2
Comments
We can either use ADSI,WMI,JScript etc ... to query IIS 7 config like how many website, virtual directories.Lately we have another option to use Microsoft.Web.Administrator namespace either from Web app or from Powershell. At the root level we've class...
My ramblings on ASP.NET and IIS
IIS 7: error: lock violation on deleting Modules at Website level
Posted
over 4 years ago
by
jaskis
5
Comments
Today while working on vista IIS 7 and I was trying to delete one of module named as CustomErrorModule for Default Web Site and immediate I was notified with this nice error. And this seem to be happening only with Modules which are...
My ramblings on ASP.NET and IIS
Caspol: .Net 2.0 app failing on win 2008 when hosted on UNC path
Posted
over 4 years ago
by
jaskis
5
Comments
Helping one of mate in our team with issue where Asp.net application was failing with System.Security when contents were pointing to UNC path.We were getting following error in the browse: Parser Error Message: Request for the permission of type 'System...
My ramblings on ASP.NET and IIS
Visual Studio 2008 hangs while switching to Design view
Posted
over 4 years ago
by
jaskis
0
Comments
Worked on second case in a row where Visual Studio was hanging when we click on Design View.It would take 45-60 second to respond. First thing was to check if VS 2008 SP-1 was installed because they were couple issue related to Design view slow performance...
My ramblings on ASP.NET and IIS
Missing Private Keys pair after deleting pending request from IIS
Posted
over 4 years ago
by
jaskis
1
Comments
Let say you have generated New Certificate request( certreq.txt ) from IIS manager and would like process that pending request later when you get back certificate file from the third party vendor Certificate Authority. Getting back certificate You were...
My ramblings on ASP.NET and IIS
ASMX POST request fails with Http 400 error when content-length size increases
Posted
over 4 years ago
by
jaskis
3
Comments
Recently worked on a problem where Asmx Post request fails with 'HTTP 400' status code under the following circumstances : When the size of the string parameter passed from the client application (Content-Length)> 1024 Bytes and the file is set for...
My ramblings on ASP.NET and IIS
Reasons for increasing no. "# Induced GC"
Posted
over 4 years ago
by
jaskis
2
Comments
. NET CLR Memory\# Induced GC – This is the number of garbage collections that have occurred as a result of someone explicitly calling GC. By default: 0 is the ideal no. for it. Here are the possible reasons incase you see increase no. "# induced GC"...
My ramblings on ASP.NET and IIS
IIS 7: IP Address revealed on redirection requests on HTTP/1.0 protocol
Posted
over 5 years ago
by
jaskis
0
Comments
Recently worked on interesting case where internal IP address was revealed whenever we try to query through wfetch tool Request Flow ========== Client -> ISA -> IIS 7 x.x.x.30 ->x.x.x.10-> x.x.x.20 We have DNS installed on ISA server, having...
My ramblings on ASP.NET and IIS
Logparser: Calculate No. of hits for different Browser type from IIS Logs
Posted
over 5 years ago
by
jaskis
5
Comments
Why you need to know this: To figure out what kind of browser(IE, Firefox, Safari) requests are coming for your application. So that you can make sure your application is compatible with that browser type. IIS 6 Log You can put the following into *.bat...
My ramblings on ASP.NET and IIS
Using Excel to count no. of threads having same call stack
Posted
over 5 years ago
by
jaskis
2
Comments
Lately, have worked on issue where most of threads were hooked up same call stack . Question pop up in my mind how many of thread are effected in total or having msxml3!CXMLHTTP::send in it. MS Excel spreadsheet came to rescue. From windbg get call stack...
My ramblings on ASP.NET and IIS
.Net Versions unleashed >>>
Posted
over 5 years ago
by
jaskis
1
Comments
In the changing .Net world it's difficult to keep track of version corresponding to framework . Following is compiled list of .Net Version till 4.0 1.0 === .Net Framework 1.0 RTM ===> 1.0.3705.0 .Net Framework 1.0 SP-1 ===> 1.0.3705.209...
My ramblings on ASP.NET and IIS
JScript: bWaitOnReturn property is not working as expected from JS file on Vista box
Posted
over 5 years ago
by
jaskis
1
Comments
Working with JScript file on Vista box , did noticed diffrence where bWaitOnReturn property is not working as expected. Syntax WshShell.Run (strCommand, [intWindowStyle], [bWaitOnReturn]) bWaitOnReturn : Wait for the command to complete before...
Page 3 of 4 (79 items)
1
2
3
4