I found out why this is happening.
In IIS7 on the Application Pool, there are ping settings that will kill a session if it gets not response. This is great for production as it keeps iis running slim but when debugging in Visual Studio and stopping on a breakpoint that is nasty.
I found an article that explains how to disable the ping or extend the timeout period.
Application Pool Ping setting in IIShttp://technet.microsoft.com/en-us/library/cc725836.aspx
If you come across any tips, tricks or resource you think the group will find helpful please email them to Susan Fischer at susan@clinchportal.com and we will post them here.
Thursday, April 9, 2009
Sunday, May 25, 2008
If you are like me you find dealing with regular expressions both powerful and frustrating.I found a couple links that may help you on your journey to build regular expressions.
Roy Osherove has a few tools here that will be useful. The first is the Regulator that allows you to build regular expression with intellisense included. The second tool is the regulazy that allows you to typein text select it and via right click create your regular expression:
http://tools.osherove.com/Default.aspx?tabid=165
The third is not really a tool but a library that helps you find regular expressions that others have created for you:
http://regexlib.com/
This posting is also available at: http://csharpguild.blogspot.com/2008/05/regular-expressions-help.html You can check out this blog for additional information related to c#
If you find any regular expression tools or other tools you find useful please email them to me at susan@clinchportal.com
Roy Osherove has a few tools here that will be useful. The first is the Regulator that allows you to build regular expression with intellisense included. The second tool is the regulazy that allows you to typein text select it and via right click create your regular expression:
http://tools.osherove.com/Default.aspx?tabid=165
The third is not really a tool but a library that helps you find regular expressions that others have created for you:
http://regexlib.com/
This posting is also available at: http://csharpguild.blogspot.com/2008/05/regular-expressions-help.html You can check out this blog for additional information related to c#
If you find any regular expression tools or other tools you find useful please email them to me at susan@clinchportal.com
Friday, May 2, 2008
Perpetual Beginner
For those just learning some of the newer technologies such as subsonic, linq, mvc, etc this is going to be fast becoming the place to go. It is definitely a blog to keep an eye on. The perpetual beginner, Jesse Naiman, will soon be a name you will remember.
Here is the link to his blog: http://alt-net-guild.blogspot.com/
Here is the link to his blog: http://alt-net-guild.blogspot.com/
Thursday, February 14, 2008
Visual Studio Slows or Goes off in limbo
AutoRecover is a feature in VS 2005, which used for automatically saving work on a regular basis. This will be helpful when power failure or system crash. Anyway, we could turn off it in VS 2005 optionsEnviornmentAutoRecover
http://msdn2.microsoft.com/en-us/vstudio/aa718517.aspx [AutoRecover in the IDE]
If you go into Tools/Options and click on the environment tab you may see an option for AutoRecover.
If not there is a checkbox at the bottom that says show all options then it will show up.
When you click on AutoRecover you will notice that it tries to save your work every 5 minutes.
http://msdn2.microsoft.com/en-us/vstudio/aa718517.aspx [AutoRecover in the IDE]
If you go into Tools/Options and click on the environment tab you may see an option for AutoRecover.
If not there is a checkbox at the bottom that says show all options then it will show up.
When you click on AutoRecover you will notice that it tries to save your work every 5 minutes.
Friday, February 1, 2008
Trouble installing Visual Studio or .net Framework
I was having trouble installing Visual Studio 2008 after installing earlier betas of it.
Unfortunately the uninstall in add/remove programs was broken. I came across this tool and used it to remove the older frameworks. I thought I would pass it on:
http://blogs.msdn.com/astebner/archive/2005/04/08/406671.aspx
Unfortunately the uninstall in add/remove programs was broken. I came across this tool and used it to remove the older frameworks. I thought I would pass it on:
http://blogs.msdn.com/astebner/archive/2005/04/08/406671.aspx
Saturday, November 17, 2007
Subsonic - All your Databases Belong To Us
Recently a colleague of mine introduced me to an amazing technology. Subsonic is a tool that integrates closely with Visual Studio 2005 and will generate an object model for your database at compile time based on the database connection in your web.config.
This greatly simplifies your code as all the connection logic, proc calls with types etc all disappear into a couple lines of code. Its amazing. You should really look into it. I have provided a couple links here to get you started.\\
Here is the main site for the project: http://www.subsonicproject.com/
You will also want the tools that integrate with Visual Studio 2005 available at:
http://www.codeplex.com/subsonictools
If you have any cool links about subsonic post comments here with them or email them to me at chris@clinchportal.com or chrisw_88@hotmail.com
This greatly simplifies your code as all the connection logic, proc calls with types etc all disappear into a couple lines of code. Its amazing. You should really look into it. I have provided a couple links here to get you started.\\
Here is the main site for the project: http://www.subsonicproject.com/
You will also want the tools that integrate with Visual Studio 2005 available at:
http://www.codeplex.com/subsonictools
If you have any cool links about subsonic post comments here with them or email them to me at chris@clinchportal.com or chrisw_88@hotmail.com
Thursday, September 20, 2007
Enumerating SQL Servers from .NET 2.0
I ran into a situation where I was not sure of the name of the SQL Server I would be using on a hosted site.
I found this code that helped to find a list of them all.
http://dotnetslackers.com/SQL/re-20320_Enumerating_SQL_Servers_from_NET_2_0.aspx
Hope this helps you too.
Subscribe to:
Posts (Atom)