<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Paul Gu&#124;blog &#187; Dot Net</title>
	<atom:link href="http://blog.paulgu.com/tag/net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.paulgu.com</link>
	<description>Sharing my world with the world</description>
	<lastBuildDate>Tue, 17 Jan 2012 13:41:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Generating Random Number and String in C#</title>
		<link>http://blog.paulgu.com/programming/generating-random-number-and-string-in-c/</link>
		<comments>http://blog.paulgu.com/programming/generating-random-number-and-string-in-c/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 17:50:59 +0000</pubDate>
		<dc:creator>Paul Gu</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Arts]]></category>
		<category><![CDATA[Dot Net]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.paulgu.com/2008/06/11/generating-random-number-and-string-in-c/</guid>
		<description><![CDATA[The following code returns a random number between min and max: private int RandomNumber(int min, int max) { Random random = new Random(); return random.Next(min, max); } At some point, you may also want to generate random strings. /// /// Generates a random string with the given length /// /// Size of the string /// [...]]]></description>
		<wfw:commentRss>http://blog.paulgu.com/programming/generating-random-number-and-string-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS SQL SERVER &#8211; Shrinking Truncate Log File (Log Full)</title>
		<link>http://blog.paulgu.com/database/ms-sql-server-shrinking-truncate-log-file-log-full/</link>
		<comments>http://blog.paulgu.com/database/ms-sql-server-shrinking-truncate-log-file-log-full/#comments</comments>
		<pubDate>Mon, 26 May 2008 14:57:02 +0000</pubDate>
		<dc:creator>Paul Gu</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Dot Net]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.paulgu.com/2008/05/26/ms-sql-server-shrinking-truncate-log-file-log-full/</guid>
		<description><![CDATA[Is it impossible to shrink the Trucated Log file? Yes, following code always shrinks the Trucated Log File to minimum size possible. 1) Replace DatabaseName with your database name 2) Replace TransactionLogName to database log name USE DatabaseName GO DBCC SHRINKFILE(TransactionLogName, 1) BACKUP LOG DatabaseName WITH TRUNCATE_ONLY DBCC SHRINKFILE(TransactionLogName, 1) GO Is is simple?]]></description>
		<wfw:commentRss>http://blog.paulgu.com/database/ms-sql-server-shrinking-truncate-log-file-log-full/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handle Special Characters in ASP.Net Webservice</title>
		<link>http://blog.paulgu.com/dotnet/handle-special-characters-in-aspnet-webservice/</link>
		<comments>http://blog.paulgu.com/dotnet/handle-special-characters-in-aspnet-webservice/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 16:13:55 +0000</pubDate>
		<dc:creator>Paul Gu</dc:creator>
				<category><![CDATA[Dot Net]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.paulgu.com/2008/01/24/handle-special-characters-in-aspnet-webservice/</guid>
		<description><![CDATA[When do query page in ASP.NET, the special characters(é,ç,ë etc.,) are comming as ??&#8230; The Response contains both ASCII and non-ASCII characters&#8230; This might be a consequence of the proxy class they generated. It should be able to set the HTTPContentType to &#8220;text/xml;charset=utf-8&#8243;. This is the header that &#8216;packs&#8217; the soap, since it is handled [...]]]></description>
		<wfw:commentRss>http://blog.paulgu.com/dotnet/handle-special-characters-in-aspnet-webservice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DebugView for Windows</title>
		<link>http://blog.paulgu.com/dotnet/debugview-for-windows/</link>
		<comments>http://blog.paulgu.com/dotnet/debugview-for-windows/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 21:27:57 +0000</pubDate>
		<dc:creator>Paul Gu</dc:creator>
				<category><![CDATA[Dot Net]]></category>
		<category><![CDATA[Debug]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.paulgu.com/2008/01/22/debugview-for-windows/</guid>
		<description><![CDATA[By Mark Russinovich DebugView is an application that lets you monitor debug output on your local system, or any computer on the network that you can reach via TCP/IP. It is capable of displaying both kernel-mode and Win32 debug output, so you don&#8217;t need a debugger to catch the debug output your applications or device [...]]]></description>
		<wfw:commentRss>http://blog.paulgu.com/dotnet/debugview-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dot NET DateTime Format String</title>
		<link>http://blog.paulgu.com/blogroll/dot-net-datetime-format-string/</link>
		<comments>http://blog.paulgu.com/blogroll/dot-net-datetime-format-string/#comments</comments>
		<pubDate>Tue, 22 Jan 2008 19:58:45 +0000</pubDate>
		<dc:creator>Paul Gu</dc:creator>
				<category><![CDATA[Blogroll]]></category>
		<category><![CDATA[Dot Net]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://blog.paulgu.com/2008/01/22/dot-net-datetime-format-string/</guid>
		<description><![CDATA[&#8220;I see stuff like&#160;&#8221;zz&#8221; passed into DateTime.ToString(). What exactly does that do?&#8221; &#8212; Very Confused DateTime&#160;String Formatter DateTime has its own set format string modifiers because there are so many ways to display a date and time. There are 2 things that affects how your DateTime is formatted. 1. CultureInfo Besides the format string modifiers, [...]]]></description>
		<wfw:commentRss>http://blog.paulgu.com/blogroll/dot-net-datetime-format-string/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

