<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.7.1" -->
<rss version="0.92">
<channel>
	<title>Ctrl+F5</title>
	<link>http://ctrlf5.net</link>
	<description>Start Without Debugging</description>
	<lastBuildDate>Mon, 03 May 2010 18:06:44 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>How To Invoke C# dll From Native C++ Code?</title>
		<description><![CDATA[You can invoke a C# or a managed .Net dll from a Native application written in VC++ or C++ in several ways. Here are the three main ways you can use to achieve this.

Use a C++/CLI wrapper 
Host CLR (Common Language Runtime) 
Convert .NET assembly to a COM server, and call it from C++ through [...]]]></description>
		<link>http://ctrlf5.net/?p=204</link>
			</item>
	<item>
		<title>How to fix &#8220;System.Web.HttpException: Maximum request length exceeded&#8221; error in Asp.Net?</title>
		<description><![CDATA[By default, Asp.Net specifies a limit for the input stream buffering threshold. This limit can be used to prevent denial of service attacks that are caused, for example by users posting large files to the server. The default value for this is 4096 kb. If the threshold is exceeded, you get a ConfigurationErrorsExeption with a [...]]]></description>
		<link>http://ctrlf5.net/?p=203</link>
			</item>
	<item>
		<title>How to loop through controls in a Container looking for a particular type in .Net?</title>
		<description><![CDATA[There usually are several occasions where you might want to loop through all the controls in a container like a panel or a form etc.. looking for a particular type of control. For example, lets say you have a panel on your form which has several CheckBoxes in it, and you wish to find out [...]]]></description>
		<link>http://ctrlf5.net/?p=201</link>
			</item>
	<item>
		<title>How to escape an XML file or string in C#?</title>
		<description><![CDATA[Escaping XML text basically means we are trying to replace the &#8220;&#60;&#8221;, &#8220;&#62;&#8221; etc. characters that are used to construct the XML with the encoded values. Here are the 5 values that we care about



XML Value
Encoded Value


&#60;
&#38;lt;


&#62;
&#38;gt;


&#8220;
&#38;quot;


&#8216;
&#38;apos;


&#38;
&#38;amp;



There are several ways in which you can escape an XML file or string in .Net. 
&#160;
1. Using Regular [...]]]></description>
		<link>http://ctrlf5.net/?p=200</link>
			</item>
	<item>
		<title>How to debug managed code and Asp.Net using WinDbg?</title>
		<description><![CDATA[If you are trying to troubleshoot problems occurred in you .Net application, especially if they are caused by ASP.net, you are now in luck. Microsoft recently released an extension for WinDbg that will allow you to diagnose high-memory issues, high-CPU issues, crashes, hangs and many other problems that might occur in a Asp.NET application. This [...]]]></description>
		<link>http://ctrlf5.net/?p=199</link>
			</item>
	<item>
		<title>How to get the name of the app pool that the worker process is associated with in Asp.NET?</title>
		<description><![CDATA[It is very simple to get the name of the application pool current worker process is associated with in Asp.NET. You can simple use the server variables for that. For example, to display the app pool name on your web page you can simply use the below code snippet.
&#60;%= Request.ServerVariables(&#34;APP_POOL_ID&#34;) %&#62;
&#160;
This is usually helpful when [...]]]></description>
		<link>http://ctrlf5.net/?p=198</link>
			</item>
	<item>
		<title>ATL namespace not visible by default in Visual Studio 2010</title>
		<description><![CDATA[When you create a new ATL project in Visual Studio 2010, IDE generated StdAfx.h does not include the ATL namespace by default. Because of this behavior, when you try to use any ATL API (Like CComBstr for example) in your main cpp file, the build will fail with several &#8220;Undeclared Identifier&#8221; errors. Any existing project [...]]]></description>
		<link>http://ctrlf5.net/?p=197</link>
			</item>
	<item>
		<title>Free .Net Framework 4 Beta Certification Exams</title>
		<description><![CDATA[I just got this email from Microsoft. Hope this helps some one waiting to get certified for .Net Framework 4 Development. It seems slots are very limit, register asap.
You are invited to take part in one or more beta exams for Visual Studio 2010 and the Microsoft .NET Framework 4.
If you pass one of the [...]]]></description>
		<link>http://ctrlf5.net/?p=196</link>
			</item>
	<item>
		<title>How to enable SSL on IIS 7.0 programmatically?</title>
		<description><![CDATA[You can use Microsoft.Web.Administration namespace to create a binding and set the certificate hash. Let us say you are trying to add a new binding to a website &#8220;MySite&#8221; with a new SSL certificate hash &#8220;MyCertHash&#8221;, here is what you have to do to achieve this
ServerManager serverManager = new ServerManager();
serverManager.Sites[&#34;MySite&#34;].Bindings.Add(&#34;*.443:&#34;, MyCertHash, &#34;MyCert&#34;);
The bindings member configures [...]]]></description>
		<link>http://ctrlf5.net/?p=194</link>
			</item>
	<item>
		<title>How to deploy an ASP.NET MVC application with out using the compiled dll?</title>
		<description><![CDATA[On some occasions you might want to deploy the Asp.Net MVC application to avoid compiling it yourself etc. You can achieve this by following the below steps

Create an ASP.NET website project in Visual Studio
Add a reference to the System.Web.Mvc.dll (and any other DLLs that your application might need)
Copy the web.config from regular ASP.NET MVC project [...]]]></description>
		<link>http://ctrlf5.net/?p=193</link>
			</item>
</channel>
</rss>
