<?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/"
	>

<channel>
	<title>AnitraSmith.Net</title>
	<atom:link href="http://www.anitrasmith.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anitrasmith.net/blog</link>
	<description>Blog - Help for your website</description>
	<pubDate>Tue, 09 Jun 2009 19:47:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>I added a CSS border. Why isn&#8217;t it showing?</title>
		<link>http://www.anitrasmith.net/blog/2009/06/css-border-style-defaults-to-none/</link>
		<comments>http://www.anitrasmith.net/blog/2009/06/css-border-style-defaults-to-none/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 19:36:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[quick tips]]></category>

		<guid isPermaLink="false">http://www.anitrasmith.net/blog/?p=13</guid>
		<description><![CDATA[When tutoring, I run into this issue all the time.
&#8220;I have a color and a width for my border. Why isn&#8217;t it showing up?&#8221;
You must specify border-style. (You probably want it to be solid).
Believe it or not, the default value for border-style is none. So if you haven&#8217;t specified a style, you have no border [...]]]></description>
			<content:encoded><![CDATA[<p>When tutoring, I run into this issue all the time.</p>
<p>&#8220;I have a color and a width for my border. Why isn&#8217;t it showing up?&#8221;</p>
<p><strong>You must specify <code>border-style</code>.</strong> (You probably want it to be <code>solid</code>).</p>
<p>Believe it or not, the default value for <code>border-style</code> is <strong><code>none</code></strong>. So if you haven&#8217;t specified a style, you have no border at all!</p>
<p>Values other than <code>solid</code> you can use for border-style:</p>
<div style="border:1px black dotted"><code>dotted</code></div>
<p></p>
<div style="border:1px black dashed"><code>dashed</code></div>
<p></p>
<div style="border:3px black double"><code>double</code> (Border <code>width</code> must be 3px or greater)</div>
<p></p>
<div style="border:3px black groove"><code>groove</code> (Width at least 2px)</div>
<p></p>
<div style="border:3px black ridge"><code>ridge</code> (Width at least 2px)</div>
<p></p>
<div style="border:3px black inset"><code>inset</code> (Width at least 2px)</div>
<p></p>
<div style="border:3px black outset"><code>outset</code> (Width at least 2px)</div>
]]></content:encoded>
			<wfw:commentRss>http://www.anitrasmith.net/blog/2009/06/css-border-style-defaults-to-none/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ASP.NET, SQLDataSources, and null parameters</title>
		<link>http://www.anitrasmith.net/blog/2008/09/aspnet-sqldatasources-and-null-parameters/</link>
		<comments>http://www.anitrasmith.net/blog/2008/09/aspnet-sqldatasources-and-null-parameters/#comments</comments>
		<pubDate>Sat, 06 Sep 2008 02:26:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[ASP]]></category>

		<category><![CDATA[quick tips]]></category>

		<guid isPermaLink="false">http://www.anitrasmith.net/blog/?p=8</guid>
		<description><![CDATA[Using a stored procedure in your SQLDataSource? Good! Trying to pass blank parameters? Trouble!
If your stored procedure needs to be able to accept null values or blank strings, set the CancelSelectOnNullParameter property of the data source to false.
Otherwise, passing an empty value to a parameter will cancel your data access, leaving you wondering why certain [...]]]></description>
			<content:encoded><![CDATA[<p>Using a stored procedure in your SQLDataSource? Good! Trying to pass blank parameters? Trouble!</p>
<p>If your stored procedure needs to be able to accept null values or blank strings, set the <code>CancelSelectOnNullParameter</code> property of the data source to <b>false</b>.</p>
<p>Otherwise, passing an empty value to a parameter will cancel your data access, leaving you wondering why certain queries work and others don&#8217;t.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anitrasmith.net/blog/2008/09/aspnet-sqldatasources-and-null-parameters/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
