<?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>MelvinsWebStuff</title>
	<atom:link href="http://www.melvinswebstuff.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.melvinswebstuff.com</link>
	<description>My Online Notepad</description>
	<lastBuildDate>Sun, 22 Jan 2012 15:51:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>.NET Hyperlink ImageURL</title>
		<link>http://www.melvinswebstuff.com/2012/01/net-hyperlink-imageurl/</link>
		<comments>http://www.melvinswebstuff.com/2012/01/net-hyperlink-imageurl/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 15:54:02 +0000</pubDate>
		<dc:creator>Melvins Web Stuff</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.melvinswebstuff.com/?p=356</guid>
		<description><![CDATA[Here&#8217;s an interesting article about a bug in this property: Working Around ASP.NET&#8217;s HyperLink ImageUrl Bug I ran across this bug today but my workaround was surrounding an Image control with anchor tags. I changed this: To:]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s an interesting article about a bug in this property:</p>
<p><a href="http://www.4guysfromrolla.com/articles/013008-1.aspx" title="Working Around ASP.NET's HyperLink ImageUrl Bug" target="_blank">Working Around ASP.NET&#8217;s HyperLink ImageUrl Bug</a></p>
<p>I ran across this bug today but my workaround was surrounding an Image control with anchor tags.</p>
<p>I changed this:</p>
<pre class="brush: html">
<asp:HyperLink ID="hlLogo" ImageUrl="~/Images/Logo.jpg" NavigateUrl="http://www.mywebsite.com" Text="My Website" ToolTip="My Website" runat="server" />
</pre>
<p>To:</p>
<pre class="brush: html">
<a title="My Website" href="http://www.mywebsite.com">
       <asp:Image ID="imgLogo" ImageUrl="~/Images/Logo.jpg" AlternateText="My Website" runat="server" />
</a>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.melvinswebstuff.com/2012/01/net-hyperlink-imageurl/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML documentation parse error (warning in Visual Studio)</title>
		<link>http://www.melvinswebstuff.com/2012/01/xml-documentation-parse-error-warning-in-visual-studio/</link>
		<comments>http://www.melvinswebstuff.com/2012/01/xml-documentation-parse-error-warning-in-visual-studio/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 15:22:35 +0000</pubDate>
		<dc:creator>Melvins Web Stuff</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Visual Studio]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.melvinswebstuff.com/?p=347</guid>
		<description><![CDATA[I was working with a VB.NET project today and noticed the following warning: XML documentation parse error: Whitespace is not allowed at this location. XML comment will be ignored. After a quick search on the web I found the problem was using the &#8216;&#038;&#8217; character which is a reserved character for XML documentation. So my [...]]]></description>
			<content:encoded><![CDATA[<p>I was working with a VB.NET project today and noticed the following warning:</p>
<p>XML documentation parse error: Whitespace is not allowed at this location. XML comment will be ignored.</p>
<p>After a quick search on the web I found the problem was using the &#8216;&#038;&#8217; character which is a reserved character for XML documentation. So my solution was to change &#8216;&#038;&#8217; to &#8216;and&#8217; but I also found that placing the comment inside of &lt;![CDATA[ Comments ]]&gt; works. Here&#8217;s an example of my comment:</p>
<pre class="brush: vb">
'''
<summary>
''' This is a comment with an ampersand &#038; causes a warning in Visual Studio.
''' </summary>

''' <value></value>
''' <returns></returns>
''' <remarks></remarks>
Public Property s1() As String
	Get
		Return ""
	End Get
End Property
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.melvinswebstuff.com/2012/01/xml-documentation-parse-error-warning-in-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>TOP 100 PERCENT and ORDER BY</title>
		<link>http://www.melvinswebstuff.com/2012/01/top-100-percent-and-order-by/</link>
		<comments>http://www.melvinswebstuff.com/2012/01/top-100-percent-and-order-by/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 16:21:01 +0000</pubDate>
		<dc:creator>Melvins Web Stuff</dc:creator>
				<category><![CDATA[SQL]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.melvinswebstuff.com/?p=330</guid>
		<description><![CDATA[In SQL Server 2008, the TOP 100 PERCENT and ORDER BY is ignored. In SQL Server 2005, the output order isn&#8217;t guaranteed. For example if you created a view like so: CREATE VIEW vwProduct AS SELECT TOP 100 PERCENT lProductID, vsProduct FROM dbo.tblProduct AS tl ORDER BY lProductID DESC GO And tried to select from [...]]]></description>
			<content:encoded><![CDATA[<p>In SQL Server 2008, the TOP 100 PERCENT and ORDER BY is ignored. In SQL Server 2005, the output order isn&#8217;t guaranteed.</p>
<p>For example if you created a view like so:</p>
<pre class="brush: sql">
CREATE VIEW vwProduct
AS
SELECT TOP 100 PERCENT lProductID, vsProduct FROM dbo.tblProduct AS tl
ORDER BY lProductID DESC
GO
</pre>
<p>And tried to select from it expecting the results to be ordered as specified in the view, it&#8217;s not going to happen.</p>
<pre class="brush: sql">
-- Select From View
SELECT lProductID, vsProduct
FROM vwProduct
</pre>
<p>This would return the results ordered ascending not descending:<br />
lProductId&nbsp;&nbsp;vsProduct<br />
&#8212;&#8212;&#8212;&#8211;&nbsp;&#8212;&#8212;&#8212;<br />
1&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Widget&nbsp;A<br />
2&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Widget&nbsp;B<br />
3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Widget&nbsp;C<br />
4&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Widget&nbsp;D<br />
5&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Widget&nbsp;E</p>
]]></content:encoded>
			<wfw:commentRss>http://www.melvinswebstuff.com/2012/01/top-100-percent-and-order-by/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Boolean object in JavaScript</title>
		<link>http://www.melvinswebstuff.com/2012/01/using-boolean-in-javascript/</link>
		<comments>http://www.melvinswebstuff.com/2012/01/using-boolean-in-javascript/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 14:48:53 +0000</pubDate>
		<dc:creator>Melvins Web Stuff</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.melvinswebstuff.com/?p=309</guid>
		<description><![CDATA[The Boolean object represents two values either &#8220;true&#8221; or &#8220;false&#8221;. new Boolean(value); If value parameter is omitted, 0, -0, null, false, NaN, undefined, or the empty string (&#8220;&#8221;), the object has an initial value of false. Here&#8217;s a simple test for the JavaScript boolean object, here&#8217;s the HTML anchor tag I used to call a [...]]]></description>
			<content:encoded><![CDATA[<p>The Boolean object represents two values either &#8220;true&#8221; or &#8220;false&#8221;.</p>
<pre class="brush: js">
new Boolean(value);
</pre>
<p>If value parameter is omitted, 0, -0, null, false, NaN, undefined, or the empty string (&#8220;&#8221;), the object has an initial value of false.</p>
<p>Here&#8217;s a simple test for the JavaScript boolean object, here&#8217;s the HTML anchor tag I used to call a function:</p>
<p>&lt;a href=&#8221;http://www.melvinswebstuff.com&#8221; onclick=&#8221;GetBoolean(&#8216;true&#8217;); return false;&#8221;&gt;Get Boolean&lt;/a&gt;</p>
<p>Here&#8217;s the JavaScript function:</p>
<pre class="brush: js">
function GetBoolean(bBool){
	//Create a boolean object
	var myBoolean = new Boolean();
	myBoolean = true;

	if(myBoolean) alert('myBoolean = ' + myBoolean);

	if(myBoolean) alert('bBool = ' + bBool);

	if(bBool == myBoolean){
		alert('bBool == myBoolean');
	} else {
		alert('bBool <> myBoolean');
	}

}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.melvinswebstuff.com/2012/01/using-boolean-in-javascript/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Drop Down List Client &amp; Server Side event</title>
		<link>http://www.melvinswebstuff.com/2011/11/drop-down-list-client-server-side-event/</link>
		<comments>http://www.melvinswebstuff.com/2011/11/drop-down-list-client-server-side-event/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 14:13:48 +0000</pubDate>
		<dc:creator>Melvins Web Stuff</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.melvinswebstuff.com/?p=223</guid>
		<description><![CDATA[Helpful post I found for handling client &#038; server side functions for drop down list during an onchange event Drop-down-list Client-side onchange stops Server-side SelectedIndexChanged event?]]></description>
			<content:encoded><![CDATA[<p>Helpful post I found for handling client &#038; server side functions for drop down list during an onchange event</p>
<p><a href="http://bytes.com/topic/javascript/answers/740087-drop-down-list-client-side-onchange-stops-server-side-selectedindexchanged-event">Drop-down-list Client-side onchange stops Server-side SelectedIndexChanged event?</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.melvinswebstuff.com/2011/11/drop-down-list-client-server-side-event/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check if Javascript function exists</title>
		<link>http://www.melvinswebstuff.com/2011/09/check-if-javascript-function-exists/</link>
		<comments>http://www.melvinswebstuff.com/2011/09/check-if-javascript-function-exists/#comments</comments>
		<pubDate>Fri, 02 Sep 2011 15:01:36 +0000</pubDate>
		<dc:creator>Melvins Web Stuff</dc:creator>
				<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.melvinswebstuff.com/?p=214</guid>
		<description><![CDATA[Here&#8217;s a way to check to see if a function exist before calling it. if (typeof(functionName) != "undefined") { &#160;&#160;&#160;functionName(); // safe to use the function }]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a way to check to see if a function exist before calling it.</p>
<pre class="brush: js">
if (typeof(functionName) != "undefined") {
&nbsp;&nbsp;&nbsp;functionName(); // safe to use the function
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.melvinswebstuff.com/2011/09/check-if-javascript-function-exists/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeTextBox &#8211; FontFacesMenuList , FontFacesMenuNames,  FontSizesMenuList, FontSizesMenuNames</title>
		<link>http://www.melvinswebstuff.com/2011/08/freetextbox-fontfacesmenulist-fontfacesmenunames-fontsizesmenulist-fontsizesmenunames/</link>
		<comments>http://www.melvinswebstuff.com/2011/08/freetextbox-fontfacesmenulist-fontfacesmenunames-fontsizesmenulist-fontsizesmenunames/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 17:31:32 +0000</pubDate>
		<dc:creator>Melvins Web Stuff</dc:creator>
				<category><![CDATA[ASP.NET]]></category>

		<guid isPermaLink="false">http://www.melvinswebstuff.com/?p=207</guid>
		<description><![CDATA[I was able to change the font-family and font size drop down lists, see example below using VB.NET. &#60;FTB:FreeTextBox runat="server" ID="ftb" /&#62; Dim fontFaces() As String = {"Time New Roman", "Georgia", "Arial", "Tahoma", "Wingdings"} Dim fontFaceNames() As String = {"Time", "Georgia", "Arial", "Tahoma", "Wingdings"} ftb.FontFacesMenuList = fontFaces ftb.FontFacesMenuNames = fontFaceNames Note: The list of font [...]]]></description>
			<content:encoded><![CDATA[<p>I was able to change the font-family and font size drop down lists, see example below using VB.NET.</p>
<pre class="brush: xml">&lt;FTB:FreeTextBox runat="server" ID="ftb" /&gt;</pre>
<pre class="brush: vbnet">Dim fontFaces() As String = {"Time New Roman", "Georgia", "Arial", "Tahoma", "Wingdings"}
Dim fontFaceNames() As String = {"Time", "Georgia", "Arial", "Tahoma", "Wingdings"}
ftb.FontFacesMenuList = fontFaces
ftb.FontFacesMenuNames = fontFaceNames</pre>
<p>Note: The list of font sizes available are 1-7, the default is 3.</p>
<pre class="brush: vb">Dim fontSizes() As String = {"1", "2", "3", "4", "5", "6", "7"}
Dim fontSizeNames() As String = {"8", "10", "12", "14", "16", "18", "20"}
ftb.FontSizesMenuList = fontSizes
ftb.FontSizesMenuNames = fontSizeNames</pre>
<p>5</p>
]]></content:encoded>
			<wfw:commentRss>http://www.melvinswebstuff.com/2011/08/freetextbox-fontfacesmenulist-fontfacesmenunames-fontsizesmenulist-fontsizesmenunames/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Identify members of local groups using Command Prompt</title>
		<link>http://www.melvinswebstuff.com/2010/09/identify-members-of-local-groups-using-command-prompt/</link>
		<comments>http://www.melvinswebstuff.com/2010/09/identify-members-of-local-groups-using-command-prompt/#comments</comments>
		<pubDate>Wed, 08 Sep 2010 12:14:20 +0000</pubDate>
		<dc:creator>Melvins Web Stuff</dc:creator>
				<category><![CDATA[Command Prompt]]></category>

		<guid isPermaLink="false">http://www.melvinswebstuff.com/?p=152</guid>
		<description><![CDATA[To list members of the Power Users group (You must include the quotation marks.): net localgroup "power users" To list members of the Users group: net localgroup users To list members of the Administrators group: net localgroup administrators]]></description>
			<content:encoded><![CDATA[<p>To list members of the Power Users group (You must include the quotation marks.):</p>
<pre>net localgroup "power users"</pre>
<p>To list members of the Users group:</p>
<pre>net localgroup users</pre>
<p>To list members of the Administrators group:</p>
<pre>net localgroup administrators</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.melvinswebstuff.com/2010/09/identify-members-of-local-groups-using-command-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML Path Language &#8211; XPath</title>
		<link>http://www.melvinswebstuff.com/2010/07/xml-path-language-xpath/</link>
		<comments>http://www.melvinswebstuff.com/2010/07/xml-path-language-xpath/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 02:02:48 +0000</pubDate>
		<dc:creator>Melvins Web Stuff</dc:creator>
				<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.melvinswebstuff.com/?p=149</guid>
		<description><![CDATA[It is the result of an effort to provide a common syntax and semantics for functionality shared between XSL Transformations (XSLT) and XPointer (XPointer). Useful information I&#8217;ve found on XPath: XPath (Version 1.0) XPath Support in ElementTree]]></description>
			<content:encoded><![CDATA[<p>It is the result of an effort to provide a common syntax and semantics for functionality shared between XSL Transformations (<a href="http://www.w3.org/TR/xslt">XSLT</a>) and XPointer (<a href="http://www.w3.org/TR/WD-xptr">XPointer</a>).</p>
<p>Useful information I&#8217;ve found on XPath:</p>
<ul>
<li><a href="http://www.w3.org/TR/xpath">XPath (Version 1.0)</a></li>
<li><a href="http://effbot.org/zone/element-xpath.htm" target="_blank">XPath Support in ElementTree</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.melvinswebstuff.com/2010/07/xml-path-language-xpath/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>.NET 2.0 &#8211; Event validation fails when postback occurs before a page is rendered completely</title>
		<link>http://www.melvinswebstuff.com/2010/05/net-2-0-event-validation-fails-when-postback-occurs-before-a-page-is-rendered-completely/</link>
		<comments>http://www.melvinswebstuff.com/2010/05/net-2-0-event-validation-fails-when-postback-occurs-before-a-page-is-rendered-completely/#comments</comments>
		<pubDate>Mon, 31 May 2010 23:30:50 +0000</pubDate>
		<dc:creator>Melvins Web Stuff</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[VB.NET]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://www.melvinswebstuff.com/?p=142</guid>
		<description><![CDATA[http://support.microsoft.com/kb/969548 Solution: Upgrade the system to the .NET Framework 2.0 SP2 or the .NET Framework 3.5 SP1. Other information related to this issue.]]></description>
			<content:encoded><![CDATA[<p><a href="http://support.microsoft.com/kb/969548" target="_blank">http://support.microsoft.com/kb/969548</a></p>
<p>Solution: Upgrade the system to the .NET Framework 2.0 SP2 or the .NET Framework 3.5 SP1. </p>
<p><a href="http://odetocode.com/blogs/scott/archive/2006/03/20/asp-net-event-validation-and-invalid-callback-or-postback-argument.aspx" target="_blank">Other information related to this issue.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.melvinswebstuff.com/2010/05/net-2-0-event-validation-fails-when-postback-occurs-before-a-page-is-rendered-completely/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

