<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.2" -->
<rss version="0.92">
<channel>
	<title>Chris: Geek Guy</title>
	<link>http://chris.gg</link>
	<description>Tech news and other stuff from a UK-based web developer and all-round geek</description>
	<lastBuildDate>Tue, 09 Mar 2010 14:26:34 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>How to disable proxy server via web.config file</title>
		<description><![CDATA[I&#8217;m developing a simple ASP.NET page to consume an RSS feed, format and output the content. My default proxy requires authentication, so unless I supply proxy credentials or bypass the proxy altogether, I get a &#8220;407 Proxy Authentication Required&#8221; error.
Fortunately I can access the RSS feed URL directly without going through the proxy, so the [...]]]></description>
		<link>http://chris.gg/2010/03/how-to-disable-proxy-server-via-web-config-file/</link>
			</item>
	<item>
		<title>Troubleshooting IDENT_CURRENT() returning null in SQL Server</title>
		<description><![CDATA[Recently I was mystified by an issue with one of my Web applications in which the IDENT_CURRENT() function was returning null. I was under the impression that this function (which returns the last identity value generated for a specific table or view) would always return a value. In fact, as pointed out in this post, [...]]]></description>
		<link>http://chris.gg/2010/03/troubleshooting-ident_current-returning-null-in-sql-server/</link>
			</item>
	<item>
		<title>Using ISAPI Rewrite to redirect domain.com to www.domain.com</title>
		<description><![CDATA[My employer&#8217;s SharePoint-powered external website &#8211; which I look after &#8211; uses ISAPI Rewrite to provide &#8220;friendly&#8221; URLs for certain pages, and also to redirect old URLs to their new locations. Coming from a LAMP background, this is great for me as it basically works the same as Apache&#8217;s mod_rewrite.
Previously the website responded to requests [...]]]></description>
		<link>http://chris.gg/2010/03/using-isapi-rewrite-to-redirect-domain-com-to-www-domain-com/</link>
			</item>
	<item>
		<title>In detail: Argos credit card security breach</title>
		<description><![CDATA[When I saw today&#8217;s The Register article, &#8220;Argos buries unencrypted credit card data in email receipts&#8220;, I immediately logged into my Gmail account to see if I had been affected.
It didn&#8217;t take me long to find an email receipt from an order placed in April 2009, and was able to see the problem first-hand.
Near the [...]]]></description>
		<link>http://chris.gg/2010/03/in-detail-argos-credit-card-security-breach/</link>
			</item>
	<item>
		<title>Stop Ctrl+Enter from sending emails in Outlook 2003</title>
		<description><![CDATA[I use Microsoft Outlook at work and have never purposely used the Ctrl+Enter keyboard to send an email. However, I am a fairly fast typist, and sometimes don&#8217;t let go of the Ctrl key quick enough after pasting something into an email before pressing Enter for a new line, the result being a half-finished email [...]]]></description>
		<link>http://chris.gg/2010/03/stop-ctrlenter-from-sending-emails-in-outlook-2003/</link>
			</item>
	<item>
		<title>IIS 5.1 (Windows XP) OK button greyed out when adding application mappings</title>
		<description><![CDATA[This one had me flummoxed until I found the solution on the Microsoft help and support site.
Basically you need to click the &#8220;Executable&#8221; text box to initialise the path after you&#8217;ve browsed to the file.
It&#8217;s not obvious, but easy to remember once you know the workaround!
]]></description>
		<link>http://chris.gg/2010/03/iis-5-1-windows-xp-ok-button-greyed-out-when-adding-application-mappings/</link>
			</item>
	<item>
		<title>SharePoint and getElementById()</title>
		<description><![CDATA[I&#8217;ve just found out that using JavaScript&#8217;s getElementById() function doesn&#8217;t quite work as expected when dealing with controls on SharePoint pages. This is because SharePoint uses its own identifiers, so TextBox1  becomes something like ctl00$ctl00$g_3f6d90e4_335b_467c_a53f_6ae00bca6b63$ctl00$TextBox1.
Fortunately there&#8217;s a simple solution &#8211; instead of the following (which will cause an &#8220;Object required&#8221; JavaScript error):
document.getElementById("TextBox1");
you need to use [...]]]></description>
		<link>http://chris.gg/2010/02/sharepoint-and-getelementbyid/</link>
			</item>
	<item>
		<title>FreeTextBox: How to fix &#8220;The type or namespace name &#8216;Toolbar&#8217; could not be found&#8221;</title>
		<description><![CDATA[I&#8217;m working on a Visual Studio 2005 ASP.NET project which makes use of FreeTextBox to provide rich text editing capability. My code sets up the toolbar programmatically but, despite following the installation instructions to the letter (including setting up the FTB TagPrefix), my code was failing to compile with The type or namespace name &#8216;Toolbar&#8217; [...]]]></description>
		<link>http://chris.gg/2010/02/freetextbox-how-to-fix-the-type-or-namespace-name-toolbar-could-not-be-found/</link>
			</item>
	<item>
		<title>How to add an external page to iGoogle</title>
		<description><![CDATA[The Include Gadget allows you to embed any HTML page within your iGoogle start page without having to go to the trouble of writing a true iGoogle widget. I&#8217;ve created a &#8220;Work&#8221; tab on my iGoogle page and I&#8217;m using the Include Gadget to display the latest news from my company intranet alongside some other [...]]]></description>
		<link>http://chris.gg/2010/02/how-to-add-an-external-page-to-igoogle/</link>
			</item>
	<item>
		<title>How to check whether a SharePoint user is in a particular group</title>
		<description><![CDATA[Here&#8217;s a quick function I wrote to check whether a user is a member of a particular SharePoint group:

private bool IsMemberOf(string groupName)
{
    SPUser user = SPContext.Current.Web.CurrentUser;

    try
    {
        if (user.Groups[groupName] != null)
        [...]]]></description>
		<link>http://chris.gg/2010/02/how-to-check-whether-a-sharepoint-user-is-in-a-particular-group/</link>
			</item>
</channel>
</rss>
