Filed in: ASP.Net, Visual Studio
Home » Softwares
If you need to go inside ASP MVC code which can be very instructive you just need to hit 3 checkboxes inside Visual Studio and you will be ready to go.
First of all, you need to go on the Debug>Options and Settings. This will open the Options of Visual Studio. From the Debug menu, you should already be in the good menu which is Debugging.
Select the...
If you are developing Asp.Net or Asp.Mvc and would like to have warning or error if you are not using Html5 correctly, it’s plausible.
You have to go in Visual Studio 2010 into Tools>Options>Text Editor>HTML>Validation. From there you will be able to set up some configuration about how to display messages to you.
Tweetgovernment,politics news,politics news,politics
Filed in: Visual Studio
Some time Visual Studio can be not a pleasure. You may sometime arrive at a point where you compile and your new code doesn’t seem to load so you decide to add a breakpoint for debugging. But, unfortunately you have a red dot in Visual Studio that is not completely fill up. When you put your mouse cursor hover it you can read the following message...
Filed in: Visual Studio
When developing with Visual Studio, when you attach to the process or use the inner server (Cassini) a new process is launched. This one doesn’t always stop when you stop debugging. You can have a list of process that is running and sometime this can cause problem when debugging because you are not accessing the right one.
To close those server,...
Filed in: IIS, Visual Studio
IIS service start well, but all website sent an 404 error. This behaviour is strange because if you go into the IIS Manager you can see that the Sites property display that the Default Web Site is not started. If you try to start the Default Web Site, an error message tell you that it’s already taken by another process.
Default web site running
To...
Filed in: IIS
Recently, I had to work on pages which contained a lot of code that were using the famous Internet Explorer 4 document.all javascript method. It’s not supported by all browser and should not be used. You should use unique identifier but I couldn’t because time was limited for the change.
We already user JQuery so I knew that I can search...
Filed in: Regex, Visual Studio
I had to install Mercurial Server on IIS 7 recently. One of the prerequirement is to have Python installing on IIS has a CGI extension.
For this, you need to add an handler on IIS to map .cgi to Python. Unfortunately, this operation is not straight forward. If you try to add the Handlers Mapping for CGI you will get this error message.
Add Script Map...
Filed in: IIS
Sometime, when the application is deployed to IIS server you may still need to do some debugging. Debugging a Silverlight application is in fact very easy, and pretty much the same when you are working inside Visual Studio but change when you need to debug it on the server.
The first step is to be sure that you .xap file deployed on IIS is the same...
Filed in: Silverlight, Visual Studio
I am far from being an expert in Regex but with good tools writing a Regex become easier.
First, I suggest you to download is RegexBuilder from Renschler. This Regex tool is ideal once the Regex is created to check few sentence and to quick see if something is wrong or not.
RegexBuilder
The second tool is something for helping you to create the Regex....
Microsoft Windows has a Performance Counter application that is located in the Administrator Folder.
Performance Counter
Go to Control Panel\All Control Panel Items\Administrative Tools\ and select Performance Monitor. This will open a window with by default the processor performance. What is interesting is that you can see a lot of already coded performance...