<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>JD Site Care</title>
	
	<link>http://jdsitecare.com</link>
	<description>Installing Scripts for You</description>
	<lastBuildDate>Fri, 09 Jul 2010 04:25:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/JdSiteCareBlog" /><feedburner:info uri="jdsitecareblog" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>New Forms programmatic</title>
		<link>http://feedproxy.google.com/~r/JdSiteCareBlog/~3/uj94PWM4_2w/</link>
		<comments>http://jdsitecare.com/new-forms-programmatic/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 04:25:19 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[new form]]></category>
		<category><![CDATA[programatic controls]]></category>
		<category><![CDATA[visual  basic]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=399</guid>
		<description><![CDATA[In some cases it would be nice to have our own type of message box to display results. For example, if you are creating a contact management system and a record has been saved successfully you would want to display the success message. Now our project may not have any use in having another form [...]]]></description>
			<content:encoded><![CDATA[<p>In some cases it would be nice to have our own type of message box to display results.<br />
For example, if you are creating a contact management system and a record has been saved successfully you would want to display the success message.<br />
Now our project may not have any use in having another form created and displayed within our project so one approach we can take is to create and show the form only when needed.</p>
<h3>Creating Our Module Structure</h3>
<ul>
<li>From your solution explorer right click on your project name</li>
<li>Click Add =&gt; New Folder</li>
<li>Name it anything you want, i named mine Modules</li>
<li>Right Click on the Modules folder or whatever you named it and choose Add =&gt; Module&#8230;</li>
<li>Name it whatever you want, i just named mine&#8221;Added&#8221; without the double quotes</li>
</ul>
<div id="attachment_400" class="wp-caption alignnone" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/07/Modules.png"><img class="size-medium wp-image-400 " title="Modules" src="http://jdsitecare.com/wp-content/uploads/2010/07/Modules-300x206.png" alt="" width="300" height="206" /></a><p class="wp-caption-text">New Module</p></div>
<p>Once you click Add, your new Module should be created and should look like this</p>
<div id="attachment_401" class="wp-caption alignnone" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/07/Module_Added.png"><img class="size-medium wp-image-401 " title="Module_Added" src="http://jdsitecare.com/wp-content/uploads/2010/07/Module_Added-300x48.png" alt="" width="300" height="48" /></a><p class="wp-caption-text">New Module File</p></div>
<p>Now that we have our Empty Module created the first thing we need to do is add a new Method.<br />
Within our Method will contain the code we want to execute when we call that method, so to create the method insert this line of code between the Module End Module block</p>
<p><code>Public Sub MsgAdded()</code></p>
<p>End Sub</p>
<p>MsgAdded is the method we will call on our submission from whatever form we want.<br />
The next thing we need to do is create a new form instance, this will be the form that will be displayed when we call it.<br />
Remember, this form will not be added to our project.<br />
<code><br />
Dim AddedMessage As New Form</code></p>
<p>Now that we have added a declaration as a new form we now need to set some properties for that form, so lets do that.<br />
<code><br />
AddedMessage.Name = "FormMessage"<br />
AddedMessage.Text = "Contact Added"<br />
AddedMessage.Size = New Size(313, 123)<br />
AddedMessage.FormBorderStyle = FormBorderStyle.FixedDialog<br />
AddedMessage.StartPosition = FormStartPosition.CenterScreen<br />
AddedMessage.MinimizeBox = False<br />
AddedMessage.MaximizeBox = False<br />
AddedMessage.BackColor = Color.White<br />
AddedMessage.ShowIcon = False<br />
AddedMessage.Show()<br />
AddedMessage.TopMost = True</code></p>
<p>Let me explain what these properties are and why they are set.</p>
<table class="style1" cellpadding="5" width="100%">
<tbody>
<tr>
<td class="style2" align="center" valign="top"><img src="http://jdsitecare.com/wp-content/uploads/2010/07/properties.gif" alt="" /></td>
<td align="center" valign="top"><strong>VALUES</strong></td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.Name</code></td>
<td align="left">Identifies the control by the Name property</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.Text</code></td>
<td align="left">The text that is displayed in the title bar</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.Size</code></td>
<td align="left">Over rides the default form size, if not set, default size will be initiated</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.FormBorderStyle</code></td>
<td align="left">Sets the Border style of the fom</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.StartPosition</code></td>
<td align="left">Sets the positioning of the form when called</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.MinimizeBox</code></td>
<td align="left">Determines if the Minimize button is visible or not, Values are Boolean (True or<br />
False)</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.MaximizeBox</code></td>
<td align="left">Determines if the Maximize button is visible or not, Values are Boolean (True or<br />
False)</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.BackColor</code></td>
<td align="left">Sets the background color of the form</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.ShowIcon</code></td>
<td align="left">Determines weather to show the icon in the title bar or not, Values are<br />
Boolean(True or False)</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.TopMost</code></td>
<td align="left">Determines if the form should always remain over top of other windows</td>
</tr>
</tbody>
</table>
<p>Our new form is now set and can now be called by calling <code>MsgAdded()</code></p>
<p>Now lets go a head and create our message to be displayed.<br />
We are just going to use a Label control, and we are going to create this essentially the same way we did the form.<br />
The first thing we need to do is create our Label to hold our message.<br />
Insert this below <code>AddedMessage.TopMost = True</code></p>
<p><code>Dim MessageLabel As New Label</code><br />
Now we need to set some properties of our label.</p>
<p><code><br />
MessageLabel.Name = "LabelMessage"<br />
MessageLabel.Text = "Contact Has Been Saved Successfully"<br />
MessageLabel.Width = AddedMessage.Width<br />
MessageLabel.Location = New Point(55, 41)</code></p>
<p>Now that our label message has been created we have to tell the form to add the label to the form.<br />
Under <code>MessageLabel.Location = New Point(55, 41</code> insert this</p>
<p><code>AddedMessage.Controls.Add(MessageLabel)</code></p>
<p>Now when we call the new form, the form will add the Label control.<br />
Remember, <code>MessageLabel</code> is the name of the label we created.<br />
Anytime you add controls to a form this way you need to specify the <strong>Name</strong> of the control you want to be added inside the <code>Controls.Add(ControlName)</code> method.</p>
<p>So far we have accomplished the following tasks</p>
<ol>
<li>Created a new Form</li>
<li>Set properties to our new form</li>
<li>Created a message that will be stored in a label control</li>
<li>Set the properties of the Label control</li>
<li>Told our new form to add the Label control</li>
</ol>
<p>The final task we need to is trigger a event to call our new form, this part is pretty easy and it can be used on any form you have in your project.</p>
<ul>
<li>Open your Form1</li>
<li>Drag a button on to your form</li>
<li>Double click on the button to create a Button1_Click event</li>
<li>Type in the following code</li>
<li><code>MsgAdded()</code></li>
</ul>
<p>Run the application (F5) or click the little Green Play Button at the top<br />
When you click the button you will see your new form appear.</p>
<p>This concludes another Visual Basic tutorial.<br />
I hope that you find use of this tutorial and can use this within your own project(s)</p>
<fb:like href=http://jdsitecare.com/new-forms-programmatic/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fnew-forms-programmatic%2F&amp;title=New%20Forms%20programmatic&amp;bodytext=In%20some%20cases%20it%20would%20be%20nice%20to%20have%20our%20own%20type%20of%20message%20box%20to%20display%20results.%0D%0AFor%20example%2C%20if%20you%20are%20creating%20a%20contact%20management%20system%20and%20a%20record%20has%20been%20saved%20successfully%20you%20would%20want%20to%20display%20the%20success%20message.%0D%0ANow%20our%20proj" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fnew-forms-programmatic%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fnew-forms-programmatic%2F&amp;title=New%20Forms%20programmatic&amp;notes=In%20some%20cases%20it%20would%20be%20nice%20to%20have%20our%20own%20type%20of%20message%20box%20to%20display%20results.%0D%0AFor%20example%2C%20if%20you%20are%20creating%20a%20contact%20management%20system%20and%20a%20record%20has%20been%20saved%20successfully%20you%20would%20want%20to%20display%20the%20success%20message.%0D%0ANow%20our%20proj" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fnew-forms-programmatic%2F&amp;t=New%20Forms%20programmatic" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fnew-forms-programmatic%2F&amp;title=New%20Forms%20programmatic" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fnew-forms-programmatic%2F&amp;title=New%20Forms%20programmatic&amp;annotation=In%20some%20cases%20it%20would%20be%20nice%20to%20have%20our%20own%20type%20of%20message%20box%20to%20display%20results.%0D%0AFor%20example%2C%20if%20you%20are%20creating%20a%20contact%20management%20system%20and%20a%20record%20has%20been%20saved%20successfully%20you%20would%20want%20to%20display%20the%20success%20message.%0D%0ANow%20our%20proj" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fnew-forms-programmatic%2F&amp;title=New%20Forms%20programmatic" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=uj94PWM4_2w:mDtLqG6V2HA:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=uj94PWM4_2w:mDtLqG6V2HA:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=uj94PWM4_2w:mDtLqG6V2HA:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=uj94PWM4_2w:mDtLqG6V2HA:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=uj94PWM4_2w:mDtLqG6V2HA:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=uj94PWM4_2w:mDtLqG6V2HA:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/JdSiteCareBlog/~4/uj94PWM4_2w" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/new-forms-programmatic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jdsitecare.com/new-forms-programmatic/</feedburner:origLink></item>
		<item>
		<title>Testing version coming</title>
		<link>http://feedproxy.google.com/~r/JdSiteCareBlog/~3/bRZ6VmrIdLs/</link>
		<comments>http://jdsitecare.com/testing-version-coming/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 06:52:50 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Lynx Directory]]></category>
		<category><![CDATA[lynx]]></category>
		<category><![CDATA[test]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=351</guid>
		<description><![CDATA[So i was sitting here thinking shortly after i made the previous post and thought about releasing a testing version of Lynx Company Directory and that&#8217;s what i am going to do. The testing side will allow you to add a maximum of 3 company records. Once you add the 3 records a email form [...]]]></description>
			<content:encoded><![CDATA[<p>So i was sitting here thinking shortly after i made the previous post and thought about releasing a testing version of Lynx Company Directory and that&#8217;s what i am going to do.</p>
<p>The testing side will allow you to add a maximum of 3 company records.<br />
Once you add the 3 records a email form will pop up which will allow you to submit your feedback to me.<br />
The reason i have set it to 3 records only is because it gives everyone a idea on how the program works and gives everyone the feel for it.<br />
Once you get a feel for it you can tell me what you think of it, how easy or difficult it was to work with etc.<br />
This will give me the chance to develop the program and make it as easy as possible to work with.<br />
When the program is ready to be released as a Open Source project you will be able to download the .exe file as well as then project file.<br />
This test release will be available for download later on today.<br />
Stay tuned, i will add another entry once it&#8217;s available for download</p>
<p><a href="http://jdsitecare.com/wp-content/uploads/2010/06/LynxDirectory.png"><img class="size-full wp-image-344 alignleft" title="LynxDirectory" src="http://jdsitecare.com/wp-content/uploads/2010/06/LynxDirectory.png" alt="" width="94" height="191" /></a></p>
<fb:like href=http://jdsitecare.com/testing-version-coming/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Ftesting-version-coming%2F&amp;title=Testing%20version%20coming&amp;bodytext=So%20i%20was%20sitting%20here%20thinking%20shortly%20after%20i%20made%20the%20previous%20post%20and%20thought%20about%20releasing%20a%20testing%20version%20of%20Lynx%20Company%20Directory%20and%20that%27s%20what%20i%20am%20going%20to%20do.%0D%0A%0D%0AThe%20testing%20side%20will%20allow%20you%20to%20add%20a%20maximum%20of%203%20company%20records.%0D" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Ftesting-version-coming%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Ftesting-version-coming%2F&amp;title=Testing%20version%20coming&amp;notes=So%20i%20was%20sitting%20here%20thinking%20shortly%20after%20i%20made%20the%20previous%20post%20and%20thought%20about%20releasing%20a%20testing%20version%20of%20Lynx%20Company%20Directory%20and%20that%27s%20what%20i%20am%20going%20to%20do.%0D%0A%0D%0AThe%20testing%20side%20will%20allow%20you%20to%20add%20a%20maximum%20of%203%20company%20records.%0D" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Ftesting-version-coming%2F&amp;t=Testing%20version%20coming" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Ftesting-version-coming%2F&amp;title=Testing%20version%20coming" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Ftesting-version-coming%2F&amp;title=Testing%20version%20coming&amp;annotation=So%20i%20was%20sitting%20here%20thinking%20shortly%20after%20i%20made%20the%20previous%20post%20and%20thought%20about%20releasing%20a%20testing%20version%20of%20Lynx%20Company%20Directory%20and%20that%27s%20what%20i%20am%20going%20to%20do.%0D%0A%0D%0AThe%20testing%20side%20will%20allow%20you%20to%20add%20a%20maximum%20of%203%20company%20records.%0D" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Ftesting-version-coming%2F&amp;title=Testing%20version%20coming" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=bRZ6VmrIdLs:cPjkF67Dr3o:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=bRZ6VmrIdLs:cPjkF67Dr3o:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=bRZ6VmrIdLs:cPjkF67Dr3o:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=bRZ6VmrIdLs:cPjkF67Dr3o:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=bRZ6VmrIdLs:cPjkF67Dr3o:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=bRZ6VmrIdLs:cPjkF67Dr3o:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/JdSiteCareBlog/~4/bRZ6VmrIdLs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/testing-version-coming/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jdsitecare.com/testing-version-coming/</feedburner:origLink></item>
		<item>
		<title>Lynx Company Directory</title>
		<link>http://feedproxy.google.com/~r/JdSiteCareBlog/~3/fo9lsdEHspE/</link>
		<comments>http://jdsitecare.com/lynx-company-directory/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 21:36:08 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Lynx Directory]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[company directory]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[update]]></category>
		<category><![CDATA[visual  basic]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=343</guid>
		<description><![CDATA[Lynx Company Directory is a company directory based program i made in visual basic. This program will be open source and will be available for everyone to download. L.C.D allows you to keep track of companies information in case you need it at a later date. What Lynx Company Directory Offers The program will be [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://jdsitecare.com/wp-content/uploads/2010/06/LynxDirectory.png"><img class="alignleft size-full wp-image-344" style="margin-left: 8px; margin-right: 8px;" title="LynxDirectory" src="http://jdsitecare.com/wp-content/uploads/2010/06/LynxDirectory.png" alt="" width="94" height="191" /></a>Lynx Company Directory is a company directory based program i made in visual basic.<br />
This program will be open source and will be available for everyone to download.<br />
L.C.D allows you to keep track of companies information in case you need it at a later date.</p>
<h3>What Lynx Company Directory Offers</h3>
<p>The program will be suitable to run on your local machine as is or used in a network.<br />
Making some modifications you may also be able to run it on a remote server for other people to use.<br />
This may come in handy if you want to share company details with your friends or vice versa.</p>
<h3>So, what are the details?</h3>
<p>Some of the details you can fill in may be details you will never need to know however the options are there just in case.<br />
Here&#8217;s a breakdown of the details you will be able to submit.</p>
<ul>
<li>You can upload a thumbnail (Tested Locally Only)</li>
<li>Set a caption for the thumbnail</li>
<li>Company name</li>
<li>Address</li>
<li>City</li>
<li>State</li>
<li>Province</li>
<li>Zip</li>
<li>Phone</li>
<li>Fax</li>
<li>Representative
<ul>
<li>Name of the person you communicated with if any</li>
</ul>
</li>
<li>Reference Number
<ul>
<li>A Representative may give you a reference number which may allow you to communicate with that particular person</li>
</ul>
</li>
<li>Company type
<ul>
<li>You can take a note and describe what type of company this is (eg. telemarketer, credit union, local grocery store etc.)</li>
</ul>
</li>
<li>Notes
<ul>
<li>You may wish to keep notes on this company such as payment arrangements you made, when they might call you back, what the Representative spoke to you about etc.</li>
</ul>
</li>
<li>Company Hours of operation
<ul>
<li>Keep track of the company hours of operation as this will save you time digging around looking to see if this place is open before you go down.</li>
</ul>
</li>
<li>Search capabilities
<ul>
<li>Do you have 135 companies in your directory and want to access a particular one quickly?<br />
Lynx Company Directory will allow you to search companies based on the company name.<br />
If no results have been found than you can dig around for the information and insert it in to you directory in case you need it at a later date.</li>
</ul>
</li>
<li>Removing company details
<ul>
<li>If you directory entry has a record of hours of operation, those will be removed first and than you can remove the company entry.<br />
Having the company hours of operation removed before the company details first may prevent you from removing the company details by accident.</li>
</ul>
</li>
</ul>
<h3>What you will be able to do with Lynx Company Directory</h3>
<p>As stated above, Lynx Company Directory will be open source so you can do what ever your heart desires.<br />
Modify the functionality of it, add your own set of features and make it run the way you want to run it.<br />
Also as mentioned above, it can be used as is for your own personal use or shared amongst your friends and or family.</p>
<p>Changes to the program may happen between now and the time it is made publicly available.<br />
All functionality as stated above will remain intact but may be layed out differently than shown in the screenshots below.<br />
Basic features still needs to be worked on and arranged at a more proper level as you will see in the screens below.<br />
I am pushing to release this publicly July 1st 2010.</p>
<p style="text-align: center;"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/DTdailies.png"><img class="aligncenter size-medium wp-image-345" title="DTdailies" src="http://jdsitecare.com/wp-content/uploads/2010/06/DTdailies-300x287.png" alt="" width="300" height="287" /></a></p>
<p style="text-align: center;">
<div id="attachment_346" class="wp-caption aligncenter" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/DTdailiesRecordNone.png"><img class="size-medium wp-image-346" title="DTdailiesRecordNone" src="http://jdsitecare.com/wp-content/uploads/2010/06/DTdailiesRecordNone-300x287.png" alt="" width="300" height="287" /></a><p class="wp-caption-text">No Record Found</p></div>
<div id="attachment_347" class="wp-caption aligncenter" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/DTdailiesResults.png"><img class="size-medium wp-image-347" title="DTdailiesResults" src="http://jdsitecare.com/wp-content/uploads/2010/06/DTdailiesResults-300x287.png" alt="" width="300" height="287" /></a><p class="wp-caption-text">Record Found</p></div>
<fb:like href=http://jdsitecare.com/lynx-company-directory/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Flynx-company-directory%2F&amp;title=Lynx%20Company%20Directory&amp;bodytext=Lynx%20Company%20Directory%20is%20a%20company%20directory%20based%20program%20i%20made%20in%20visual%20basic.%0D%0AThis%20program%20will%20be%20open%20source%20and%20will%20be%20available%20for%20everyone%20to%20download.%0D%0AL.C.D%20allows%20you%20to%20keep%20track%20of%20companies%20information%20in%20case%20you%20need%20it%20at%20a%20la" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Flynx-company-directory%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Flynx-company-directory%2F&amp;title=Lynx%20Company%20Directory&amp;notes=Lynx%20Company%20Directory%20is%20a%20company%20directory%20based%20program%20i%20made%20in%20visual%20basic.%0D%0AThis%20program%20will%20be%20open%20source%20and%20will%20be%20available%20for%20everyone%20to%20download.%0D%0AL.C.D%20allows%20you%20to%20keep%20track%20of%20companies%20information%20in%20case%20you%20need%20it%20at%20a%20la" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Flynx-company-directory%2F&amp;t=Lynx%20Company%20Directory" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Flynx-company-directory%2F&amp;title=Lynx%20Company%20Directory" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Flynx-company-directory%2F&amp;title=Lynx%20Company%20Directory&amp;annotation=Lynx%20Company%20Directory%20is%20a%20company%20directory%20based%20program%20i%20made%20in%20visual%20basic.%0D%0AThis%20program%20will%20be%20open%20source%20and%20will%20be%20available%20for%20everyone%20to%20download.%0D%0AL.C.D%20allows%20you%20to%20keep%20track%20of%20companies%20information%20in%20case%20you%20need%20it%20at%20a%20la" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Flynx-company-directory%2F&amp;title=Lynx%20Company%20Directory" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=fo9lsdEHspE:qn1ZJ3HrUMc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=fo9lsdEHspE:qn1ZJ3HrUMc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=fo9lsdEHspE:qn1ZJ3HrUMc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=fo9lsdEHspE:qn1ZJ3HrUMc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=fo9lsdEHspE:qn1ZJ3HrUMc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=fo9lsdEHspE:qn1ZJ3HrUMc:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/JdSiteCareBlog/~4/fo9lsdEHspE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/lynx-company-directory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jdsitecare.com/lynx-company-directory/</feedburner:origLink></item>
		<item>
		<title>asp.net Redezined Red</title>
		<link>http://feedproxy.google.com/~r/JdSiteCareBlog/~3/N72JWFOzaiY/</link>
		<comments>http://jdsitecare.com/asp-net-redezined-red/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 21:13:21 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET Templates]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=338</guid>
		<description><![CDATA[This theme stands out a little more than the previous ones and the appearance is much richer. Your end users will love the look and feel of the site based on the theme. Download the asp.net Website Redezined theme Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p>This theme stands out a little more than the previous ones and the appearance is much richer.<br />
Your end users will love the look and feel of the site based on the theme.</p>
<p>Download the <a href="http://jdsitecare.com/wp-content/uploads/2010/06/asp.net-Website-Redezined.zip">asp.net Website Redezined</a> theme</p>
<p style="text-align: center;">
<div id="attachment_340" class="wp-caption aligncenter" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/redezinedred_tmpl.png"><img class="size-medium wp-image-340" title="redezinedred_tmpl" src="http://jdsitecare.com/wp-content/uploads/2010/06/redezinedred_tmpl-300x179.png" alt="" width="300" height="179" /></a><p class="wp-caption-text">Redezined Red</p></div>
<fb:like href=http://jdsitecare.com/asp-net-redezined-red/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-redezined-red%2F&amp;title=asp.net%20Redezined%20Red&amp;bodytext=This%20theme%20stands%20out%20a%20little%20more%20than%20the%20previous%20ones%20and%20the%20appearance%20is%20much%20richer.%0D%0AYour%20end%20users%20will%20love%20the%20look%20and%20feel%20of%20the%20site%20based%20on%20the%20theme.%0D%0A%0D%0ADownload%20the%20asp.net%20Website%20Redezined%20theme%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fasp-net-redezined-red%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-redezined-red%2F&amp;title=asp.net%20Redezined%20Red&amp;notes=This%20theme%20stands%20out%20a%20little%20more%20than%20the%20previous%20ones%20and%20the%20appearance%20is%20much%20richer.%0D%0AYour%20end%20users%20will%20love%20the%20look%20and%20feel%20of%20the%20site%20based%20on%20the%20theme.%0D%0A%0D%0ADownload%20the%20asp.net%20Website%20Redezined%20theme%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fasp-net-redezined-red%2F&amp;t=asp.net%20Redezined%20Red" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-redezined-red%2F&amp;title=asp.net%20Redezined%20Red" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fasp-net-redezined-red%2F&amp;title=asp.net%20Redezined%20Red&amp;annotation=This%20theme%20stands%20out%20a%20little%20more%20than%20the%20previous%20ones%20and%20the%20appearance%20is%20much%20richer.%0D%0AYour%20end%20users%20will%20love%20the%20look%20and%20feel%20of%20the%20site%20based%20on%20the%20theme.%0D%0A%0D%0ADownload%20the%20asp.net%20Website%20Redezined%20theme%0D%0A%0D%0A%0D%0A%0D%0A%0D%0A" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-redezined-red%2F&amp;title=asp.net%20Redezined%20Red" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=N72JWFOzaiY:RK5b7rfYhYs:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=N72JWFOzaiY:RK5b7rfYhYs:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=N72JWFOzaiY:RK5b7rfYhYs:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=N72JWFOzaiY:RK5b7rfYhYs:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=N72JWFOzaiY:RK5b7rfYhYs:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=N72JWFOzaiY:RK5b7rfYhYs:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/JdSiteCareBlog/~4/N72JWFOzaiY" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-redezined-red/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jdsitecare.com/asp-net-redezined-red/</feedburner:origLink></item>
		<item>
		<title>asp.net Dark Micro</title>
		<link>http://feedproxy.google.com/~r/JdSiteCareBlog/~3/rLffcKwMDAc/</link>
		<comments>http://jdsitecare.com/asp-net-dark-micro/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 21:32:39 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET Templates]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[dark]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=333</guid>
		<description><![CDATA[Dark Micro is a theme with a dark background and dark navigation menu. The content section is white which will make it easy to see. Download the asp.net Website Dark Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p>Dark Micro is a theme with a dark background and dark navigation menu.<br />
The content section is white which will make it easy to see.</p>
<p>Download the <a href="http://jdsitecare.com/wp-content/uploads/2010/06/asp.net-Website-Dark.zip">asp.net Website Dark</a></p>
<p style="text-align: center;"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/darkMicro1.png"><img class="aligncenter size-medium wp-image-335" title="darkMicro1" src="http://jdsitecare.com/wp-content/uploads/2010/06/darkMicro1-300x167.png" alt="" width="300" height="167" /></a></p>
<fb:like href=http://jdsitecare.com/asp-net-dark-micro/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-dark-micro%2F&amp;title=asp.net%20Dark%20Micro&amp;bodytext=Dark%20Micro%20is%20a%20theme%20with%20a%20dark%20background%20and%20dark%20navigation%20menu.%0D%0AThe%20content%20section%20is%20white%20which%20will%20make%20it%20easy%20to%20see.%0D%0A%0D%0ADownload%20the%20asp.net%20Website%20Dark%0D%0A" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fasp-net-dark-micro%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-dark-micro%2F&amp;title=asp.net%20Dark%20Micro&amp;notes=Dark%20Micro%20is%20a%20theme%20with%20a%20dark%20background%20and%20dark%20navigation%20menu.%0D%0AThe%20content%20section%20is%20white%20which%20will%20make%20it%20easy%20to%20see.%0D%0A%0D%0ADownload%20the%20asp.net%20Website%20Dark%0D%0A" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fasp-net-dark-micro%2F&amp;t=asp.net%20Dark%20Micro" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-dark-micro%2F&amp;title=asp.net%20Dark%20Micro" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fasp-net-dark-micro%2F&amp;title=asp.net%20Dark%20Micro&amp;annotation=Dark%20Micro%20is%20a%20theme%20with%20a%20dark%20background%20and%20dark%20navigation%20menu.%0D%0AThe%20content%20section%20is%20white%20which%20will%20make%20it%20easy%20to%20see.%0D%0A%0D%0ADownload%20the%20asp.net%20Website%20Dark%0D%0A" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-dark-micro%2F&amp;title=asp.net%20Dark%20Micro" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=rLffcKwMDAc:EhfOHMuD0xo:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=rLffcKwMDAc:EhfOHMuD0xo:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=rLffcKwMDAc:EhfOHMuD0xo:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=rLffcKwMDAc:EhfOHMuD0xo:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=rLffcKwMDAc:EhfOHMuD0xo:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=rLffcKwMDAc:EhfOHMuD0xo:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/JdSiteCareBlog/~4/rLffcKwMDAc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-dark-micro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jdsitecare.com/asp-net-dark-micro/</feedburner:origLink></item>
		<item>
		<title>VB Web Browser Control</title>
		<link>http://feedproxy.google.com/~r/JdSiteCareBlog/~3/78TnL-dywY8/</link>
		<comments>http://jdsitecare.com/331/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 04:16:14 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[VB Browser]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=331</guid>
		<description><![CDATA[Get a glimpse of just some of the functions and properties that are available to make a web browser fully functional.
Code with a brief description of what that function/property does.]]></description>
			<content:encoded><![CDATA[<p>The Web Browser control allows you to build a web browser.<br />
There are several functions and properties you can access which gives you access to creating a beginners basic to a more advanced web browser.<br />
Below are a list of functions and properties with short descriptions to what each function/property does.</p>
<table class="style1">
<tr>
<td align="left" colspan="2" style="font-weight: 700">
                Web Browser Functions</td>
</tr>
<tr>
<td align="left" style="color: #AA2B81">
                Navigate Go</td>
<td align="left">
                <code>WebBrowser1.Navigate(&quot;http://www.google.ca&quot;)</code><br />
                <em>Browser will navigate to specified URL at runtime</em></td>
</tr>
<tr>
<td align="left" style="color: #AA2B81">
                Navigate Back</td>
<td align="left">
                <code>WebBrowser1.GoBack()</code><br />
                <em>Sends Web Browser to previous visited page.<br />
                This is used to navigate to previous web pages.</em></td>
</tr>
<tr>
<td align="left" style="color: #AA2B81">
                Navigate Forward</td>
<td align="left">
                <code>WebBrowser1.GoForward()</code><br />
                <em>Works the same as Back but sends web browser to the<br />
                Next page if the Previous page is displayed</em></td>
</tr>
<tr>
<td align="left" style="color: #AA2B81">
                Navigate Home</td>
<td align="left">
                <code>WebBrowser1.GoHome()</code><br />
                <em>Sends the web page to the default URL (specified under Navigate Go)</em></td>
</tr>
<tr>
<td align="left" style="color: #AA2B81">
                Browser Refresh</td>
<td align="left">
                <code>WebBrowser1.Refresh()</code><br />
                <em>Refreshes the web browser</em></td>
</tr>
<tr>
<td align="left" style="color: #AA2B81">
                Browser Stop</td>
<td align="left">
                <code>WebBrowser1.Stop()</code><br />
                <em>Stops the progress of the web browser while loading</em></td>
</tr>
<tr>
<td align="left" colspan="2" style="font-weight: 700">
                Web Browser Properties</td>
</tr>
<tr>
<td align="left" style="color: #FF9933">
                Browser Status</td>
<td align="left">
                <code>WebBrowser1.StatusText</code><br />
                <em>Displays the current status of the web page loading</em></td>
</tr>
<tr>
<td align="left" style="color: #FF9933">
                Default URL</td>
<td align="left">
                <code>WebBrowser1.url</code><br />
                <em>Sets the default web browser URL which is displayed at runtime.</em></td>
</tr>
<tr>
<td align="left" style="color: #FF9933">
                Status Check</td>
<td align="left">
                <code>WebBrowser1.IsBusy</code><br />
                <em>This is a Boolean (True Or False)<br />
                Checks to see if the web browser is busy loading content from the web page.</em></td>
</tr>
<tr>
<td align="left" style="color: #FF9933">
                Ready State</td>
<td align="left">
                <code>WebBrowser1.ReadyState</code><br />
                Gets the current state of the web browser (Should be used on a timer for<br />
                accurate results)<br />
                Results are fetched as a Numerical value (There are 4 values/steps a browser<br />
                goes through)</p>
<table class="style1">
<tr>
<td>
                            <b>4 = Complete</b></td>
<td>
                            <b>3 = Interactive</b></td>
<td>
                            <b>2 = Loaded</b></td>
<td>
                            <b>1 = Loading</b></td>
</tr>
<tr>
<td>
                            Browser has loaded everything</td>
<td>
                            Browser is still working</td>
<td>
                            Browser has loaded but<br />
                            not all data</td>
<td>
                            Browser loading new doc.</td>
</tr>
</table>
</td>
</tr>
</table>
<p>
        Ready State example of use:<br />
        Declare 4 variables, 1 for each state.</p>
<p>
        <code>Dim Complete As String = WebBrowser1.ReadyState = WebBrowserReadyState.Complete</code><br />
        <br />
        <code>Dim Interactive As String = WebBrowser1.ReadyState =<br />
        WebBrowserReadyState.Interactive</code><br />
        <br />
        <code>Dim Loaded As String = WebBrowser1.ReadyState =<br />
        WebBrowserReadyState.Loaded</code><br />
        <br />
        <code>Dim Loading As String = WebBrowser1.ReadyState =<br />
        WebBrowserReadyState.Loading</code></p>
<p>
        Use your declarations in If&nbsp; statements</p>
<p><code><br />
        If Interactive Then Me.Text = &quot;Not yet loaded&quot;<br />
        </code><br />
        <code>ElseIf Complete Then Me.Text = &quot;Ready&quot;<br />
        <br />
        End If</code></p>
<fb:like href=http://jdsitecare.com/331/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2F331%2F&amp;title=VB%20Web%20Browser%20Control&amp;bodytext=Get%20a%20glimpse%20of%20just%20some%20of%20the%20functions%20and%20properties%20that%20are%20available%20to%20make%20a%20web%20browser%20fully%20functional.%0D%0ACode%20with%20a%20brief%20description%20of%20what%20that%20function%2Fproperty%20does." title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2F331%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2F331%2F&amp;title=VB%20Web%20Browser%20Control&amp;notes=Get%20a%20glimpse%20of%20just%20some%20of%20the%20functions%20and%20properties%20that%20are%20available%20to%20make%20a%20web%20browser%20fully%20functional.%0D%0ACode%20with%20a%20brief%20description%20of%20what%20that%20function%2Fproperty%20does." title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2F331%2F&amp;t=VB%20Web%20Browser%20Control" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2F331%2F&amp;title=VB%20Web%20Browser%20Control" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2F331%2F&amp;title=VB%20Web%20Browser%20Control&amp;annotation=Get%20a%20glimpse%20of%20just%20some%20of%20the%20functions%20and%20properties%20that%20are%20available%20to%20make%20a%20web%20browser%20fully%20functional.%0D%0ACode%20with%20a%20brief%20description%20of%20what%20that%20function%2Fproperty%20does." title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2F331%2F&amp;title=VB%20Web%20Browser%20Control" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=78TnL-dywY8:EqsDSc8DWKU:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=78TnL-dywY8:EqsDSc8DWKU:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=78TnL-dywY8:EqsDSc8DWKU:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=78TnL-dywY8:EqsDSc8DWKU:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=78TnL-dywY8:EqsDSc8DWKU:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=78TnL-dywY8:EqsDSc8DWKU:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/JdSiteCareBlog/~4/78TnL-dywY8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/331/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jdsitecare.com/331/</feedburner:origLink></item>
		<item>
		<title>ASP.NET Content Data Driven</title>
		<link>http://feedproxy.google.com/~r/JdSiteCareBlog/~3/nAu4m_bZXzc/</link>
		<comments>http://jdsitecare.com/asp-net-content-data-driven/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 03:50:11 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[admin]]></category>
		<category><![CDATA[content]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[sql database]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[visual web developer 2010]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=329</guid>
		<description><![CDATA[In this tutorial i will show you how you can control a home page content based website. What we will be doing is instead of having our content programaticly filled in, it will be filled using a database. Creating The Database Fire up Visual Studio 2010 or Visual Web Developer 2010 Create a ASP.NET Website [...]]]></description>
			<content:encoded><![CDATA[<p><!-- .style1 { color: #FF0000; } .style2 { width: 100%; } .style3 { color: #006600; } .style4 { color: #009933; } --></p>
<p>In this tutorial i will show you how you can control a home page content based<br />
website.</p>
<p>What we will be doing is instead of having our content programaticly filled in,<br />
it will be filled using a database.</p>
<h1>Creating The Database</h1>
<ul>
<li>Fire up Visual Studio 2010 or Visual Web Developer 2010</li>
<li>Create a ASP.NET Website <span class="style1">NOT</span> a ASP.NET Blank Website</li>
<li>Once your project has been created right click on App_Data folder -&gt; Add New<br />
Item</li>
<li>Select SQL Server Database</li>
<li>Give it a name than click Add</li>
<li>Right click on Tables and choose Add New Table (Figure 1.0)</li>
<li> <img src="http://jdsitecare.com/wp-content/uploads/2010/06/DatabaseExplorer.png" alt="" />
<p>Figure 1.0</li>
<li>You should see 3 Columns now (Column Name, Data Types and Allow Nulls)</li>
<li>Fill out the columns as they are shown in the table below</li>
<li>1) IS 2)PK
<ul>
<li>Identity Specification = Yes</li>
<li>Primary Key</li>
</ul>
</li>
</ul>
<table class="style2">
<tbody>
<tr>
<td style="font-weight: bold; background-color: #ebebeb;" align="center"></td>
<td style="font-weight: bold; background-color: #ebebeb;" align="center"></td>
<td style="font-weight: bold; background-color: #ebebeb;" align="center">Column Name</td>
<td style="font-weight: bold; background-color: #ebebeb;" align="center">Data Type</td>
<td style="font-weight: bold; background-color: #ebebeb;" align="center">Allow Nulls</td>
</tr>
<tr>
<td align="center">IS</td>
<td align="center">PK</td>
<td align="center">ContentID</td>
<td align="center">int</td>
<td align="center">
<input id="Checkbox1" type="checkbox" /></td>
</tr>
<tr>
<td align="center"></td>
<td align="center"></td>
<td align="center">Caption</td>
<td align="center">varchar(50)</td>
<td align="center">
<input id="Checkbox2" type="checkbox" /></td>
</tr>
<tr>
<td align="center"></td>
<td align="center"></td>
<td align="center">Content</td>
<td align="center">varchar(4000)</td>
<td align="center">
<input id="Checkbox3" type="checkbox" /></td>
</tr>
</tbody>
</table>
<ul>
<li>Once you have this complete click the Purple save disk at the top</li>
<li>Give your table a name, i named mine aspx_Content</li>
<li>Close the window than click on the Tables folder to expand (Figure 1.1)</li>
<li> <img src="http://jdsitecare.com/wp-content/uploads/2010/06/DatabaseTable.png" alt="" /></li>
<li>Right click on your new table and choose <strong>Show Table Data</strong></li>
<li>Insert a sample record in to the Caption and Content field than close it out</li>
</ul>
<p>Now that we have completed the Database set up it&#8217;s time to create the content<br />
section on the home page of our website.</p>
<h1>Creating Content Section</h1>
<ul>
<li class="style3">From your Default.aspx page drag a DataList control from the Toolbox in the Data<br />
section on to your form</li>
<li class="style3">Click the little arrow that appears on the DataList control to get the Smart<br />
Task</li>
<li class="style3">From the Data Source drop down list choose <strong>&lt;New data source&#8230;&gt;</strong></li>
<li class="style3">Click on Database (Figure 1.2)</li>
<li> <img style="height: 456px; width: 632px;" src="http://jdsitecare.com/wp-content/uploads/2010/06/DataSourceType.png" alt="" /></li>
<li class="style4"> Click Ok</li>
<li class="style4"> In the next dialog from the Drop down list box choose your database from the<br />
list and click Next</li>
<li class="style4"> In the next window (Select Statements) leave the * radio box checked as this is<br />
the Wild card and will select all fields</li>
<li> Click the Order button (Optional) and you can choose which field you want to<br />
Order By.</li>
<li> Click Next than click Finish</li>
</ul>
<p>You should now see your DataList on your form populated (Figure 1.3)</p>
<p><img src="http://jdsitecare.com/wp-content/uploads/2010/06/DataList.png" alt="" /></p>
<p>If you press F5 on your keyboard or click the little Green Play Button to run<br />
your site you should now see 1 record (The record you inserted manualy)</p>
<div style="padding: 5px; color: #3399ff; background-color: #d7ebff; border-style: solid; border-width: 1px; font-style: italic;">Tip:</p>
<p>You can edit how you want your content to be displayed.</p>
<p>This means you can format the style of the text, place them in to Tables etc.</p>
<p>Click the DataList on your form and click the Arrow than choose Edit Templates.</p>
<p>You can also click on Property Builder and add some exptra properties such as<br />
how you want your content layed out.</p></div>
<p>Now that we have our home page completed by displaying our content lets create<br />
the Admin section of our website where we can add Edit our content.</p>
<p>Note that we are only going to work on the Edit functionality because if we want<br />
to modify our content we can just modify it.</p>
<p>Adding new entries would be useful for blog posts, news posts, site update posts<br />
etc.</p>
<h1>Creating The Admin Section</h1>
<ul>
<li>In your Solution Explorer, right click and choose <strong>New Folder</strong></li>
<li>Name it something like Admin</li>
<li>Right click on the Folder and click <strong>Add New Item</strong></li>
<li>Choose Web Form</li>
<li>Name it Edit_Content.aspx and click Add</li>
</ul>
<h1>Adding Content Functionality</h1>
<ul>
<li>From your Toolbox drag and drop a FormView control on to your form</li>
<li>Repeat the steps above highlighted in the Green</li>
<li>After you followed those steps you want to click the Advanced button</li>
<li>Select both check boxes
<p>This allows you to add, modify and delete records</li>
<li>Click Next than Finish</li>
<li>With the FormView selected go in to your properties window (Figure 1.4)</li>
<li>Choose Default Mode from Read Only to Edit</li>
<li> <img src="http://jdsitecare.com/wp-content/uploads/2010/06/FromViewProperties.png" alt="" /></li>
<li>Now that you have set this when you run this page this will always display in<br />
Edit Mode.</li>
<li>With the FormView still selected click the little Arrow to pull up the FormView<br />
Tasks option</li>
<li>Click Edit Templates</li>
<li>From the Display: combo box change it from ItemDisplay to InsertItemDisplay</li>
<li>You should now see 2 text boxes.</li>
</ul>
<p>You can format these fields in which ever way you want.</p>
<p>How you format these fields is how they will be displayed at runtime</p>
<div style="padding: 5px; color: #3399ff; background-color: #d7ebff; border-style: solid; border-width: 1px; font-style: italic;">Tip</p>
<p>Click on the Main Content text box and in the Properties window change the<br />
TextMode from Single Line to MultiLine.</p>
<p>This allows multi line text to be inserted in to that text field.</p></div>
<p>This is a short tutorial on how you can make your site content run off your<br />
database.</p>
<p>The advantage to something like this is the ability to change your content as<br />
often as you want without having to programaticly change it.</p>
<p>Here&#8217;s a comparison of Programaticly Inserting Content to Data Inserting Content</p>
<table style="width: 100%;">
<tbody>
<tr>
<td style="font-weight: 700;" align="center">Data Inserting Content</td>
<td style="font-weight: 700;" align="center">Programaticly Inserting Content</td>
</tr>
<tr>
<td align="center">Log In to your Admin area</td>
<td align="center">Open Developer Program</td>
</tr>
<tr>
<td align="center">Navigate to Edit Content Section</td>
<td align="center">Change the Content</td>
</tr>
<tr>
<td align="center">Change Content</td>
<td align="center">Save your page</td>
</tr>
<tr>
<td align="center">Click Update</td>
<td align="center">Upload page via FTP</td>
</tr>
<tr>
<td align="center">Go to Home page</td>
<td align="center">Navigate to home page</td>
</tr>
</tbody>
</table>
<p>As you see there are the same number of tasks to do however if we take a look at<br />
how many seconds to minutes each task takes will make up, inserting content<br />
programaticly will take longer by far.</p>
<p>Well, this concludes this tutorial.</p>
<p>I hope it has helped you in some way.</p>
<p>This tutorial was created to display how you can create your home page content<br />
using a database and how you could change your home page content at any time<br />
from your Admin Panel.</p>
<p>Thank You for viewing this tutorial.</p>
<fb:like href=http://jdsitecare.com/asp-net-content-data-driven/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-content-data-driven%2F&amp;title=ASP.NET%20Content%20Data%20Driven&amp;bodytext=%0D%0A%0D%0AIn%20this%20tutorial%20i%20will%20show%20you%20how%20you%20can%20control%20a%20home%20page%20content%20based%0D%0Awebsite.%0D%0A%0D%0AWhat%20we%20will%20be%20doing%20is%20instead%20of%20having%20our%20content%20programaticly%20filled%20in%2C%0D%0Ait%20will%20be%20filled%20using%20a%20database.%0D%0ACreating%20The%20Database%0D%0A%0D%0A%09Fire%20up%20Vi" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fasp-net-content-data-driven%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-content-data-driven%2F&amp;title=ASP.NET%20Content%20Data%20Driven&amp;notes=%0D%0A%0D%0AIn%20this%20tutorial%20i%20will%20show%20you%20how%20you%20can%20control%20a%20home%20page%20content%20based%0D%0Awebsite.%0D%0A%0D%0AWhat%20we%20will%20be%20doing%20is%20instead%20of%20having%20our%20content%20programaticly%20filled%20in%2C%0D%0Ait%20will%20be%20filled%20using%20a%20database.%0D%0ACreating%20The%20Database%0D%0A%0D%0A%09Fire%20up%20Vi" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fasp-net-content-data-driven%2F&amp;t=ASP.NET%20Content%20Data%20Driven" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-content-data-driven%2F&amp;title=ASP.NET%20Content%20Data%20Driven" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fasp-net-content-data-driven%2F&amp;title=ASP.NET%20Content%20Data%20Driven&amp;annotation=%0D%0A%0D%0AIn%20this%20tutorial%20i%20will%20show%20you%20how%20you%20can%20control%20a%20home%20page%20content%20based%0D%0Awebsite.%0D%0A%0D%0AWhat%20we%20will%20be%20doing%20is%20instead%20of%20having%20our%20content%20programaticly%20filled%20in%2C%0D%0Ait%20will%20be%20filled%20using%20a%20database.%0D%0ACreating%20The%20Database%0D%0A%0D%0A%09Fire%20up%20Vi" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-content-data-driven%2F&amp;title=ASP.NET%20Content%20Data%20Driven" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=nAu4m_bZXzc:6vzJs9XVXBQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=nAu4m_bZXzc:6vzJs9XVXBQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=nAu4m_bZXzc:6vzJs9XVXBQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=nAu4m_bZXzc:6vzJs9XVXBQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=nAu4m_bZXzc:6vzJs9XVXBQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=nAu4m_bZXzc:6vzJs9XVXBQ:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/JdSiteCareBlog/~4/nAu4m_bZXzc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-content-data-driven/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jdsitecare.com/asp-net-content-data-driven/</feedburner:origLink></item>
		<item>
		<title>asp.net Cloud Micro</title>
		<link>http://feedproxy.google.com/~r/JdSiteCareBlog/~3/73otJgjZU1E/</link>
		<comments>http://jdsitecare.com/asp-net-cloud-micro/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 08:03:20 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET Templates]]></category>
		<category><![CDATA[asp.net 4.0]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=321</guid>
		<description><![CDATA[This Cloud Micro theme has clouds set as the background with a white page and purple style menu navigation. When hovered over a menu item it has a pop out effect which makes it center of attention. Download the asp.net Website Cloud theme. Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p>This Cloud Micro theme has clouds set as the background with a white page and purple style menu navigation.<br />
When hovered over a menu item it has a pop out effect which makes it center of attention.<br />
Download the <a href="http://jdsitecare.com/wp-content/uploads/2010/06/asp.net-Website-Cloud.zip">asp.net Website Cloud</a> theme.</p>
<div id="attachment_313" class="wp-caption aligncenter" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/cloudMicro1.png"><img class="size-medium wp-image-313" title="cloudMicro1" src="http://jdsitecare.com/wp-content/uploads/2010/06/cloudMicro1-300x191.png" alt="" width="300" height="191" /></a><p class="wp-caption-text">Cloud Micro</p></div>
<p style="text-align: center;">
<div id="attachment_314" class="wp-caption aligncenter" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/cloudMicro2.png"><img class="size-medium wp-image-314" title="cloudMicro2" src="http://jdsitecare.com/wp-content/uploads/2010/06/cloudMicro2-300x190.png" alt="" width="300" height="190" /></a><p class="wp-caption-text">Cloud Micro</p></div>
<p style="text-align: center;">
<fb:like href=http://jdsitecare.com/asp-net-cloud-micro/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-cloud-micro%2F&amp;title=asp.net%20Cloud%20Micro&amp;bodytext=This%20Cloud%20Micro%20theme%20has%20clouds%20set%20as%20the%20background%20with%20a%20white%20page%20and%20purple%20style%20menu%20navigation.%0D%0AWhen%20hovered%20over%20a%20menu%20item%20it%20has%20a%20pop%20out%20effect%20which%20makes%20it%20center%20of%20attention.%0D%0ADownload%20the%20asp.net%20Website%20Cloud%20theme.%0D%0A%0D%0A%0D%0A%0D%0A%0D" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fasp-net-cloud-micro%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-cloud-micro%2F&amp;title=asp.net%20Cloud%20Micro&amp;notes=This%20Cloud%20Micro%20theme%20has%20clouds%20set%20as%20the%20background%20with%20a%20white%20page%20and%20purple%20style%20menu%20navigation.%0D%0AWhen%20hovered%20over%20a%20menu%20item%20it%20has%20a%20pop%20out%20effect%20which%20makes%20it%20center%20of%20attention.%0D%0ADownload%20the%20asp.net%20Website%20Cloud%20theme.%0D%0A%0D%0A%0D%0A%0D%0A%0D" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fasp-net-cloud-micro%2F&amp;t=asp.net%20Cloud%20Micro" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-cloud-micro%2F&amp;title=asp.net%20Cloud%20Micro" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fasp-net-cloud-micro%2F&amp;title=asp.net%20Cloud%20Micro&amp;annotation=This%20Cloud%20Micro%20theme%20has%20clouds%20set%20as%20the%20background%20with%20a%20white%20page%20and%20purple%20style%20menu%20navigation.%0D%0AWhen%20hovered%20over%20a%20menu%20item%20it%20has%20a%20pop%20out%20effect%20which%20makes%20it%20center%20of%20attention.%0D%0ADownload%20the%20asp.net%20Website%20Cloud%20theme.%0D%0A%0D%0A%0D%0A%0D%0A%0D" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-cloud-micro%2F&amp;title=asp.net%20Cloud%20Micro" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=73otJgjZU1E:2N2LHf1XfJE:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=73otJgjZU1E:2N2LHf1XfJE:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=73otJgjZU1E:2N2LHf1XfJE:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=73otJgjZU1E:2N2LHf1XfJE:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=73otJgjZU1E:2N2LHf1XfJE:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=73otJgjZU1E:2N2LHf1XfJE:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/JdSiteCareBlog/~4/73otJgjZU1E" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-cloud-micro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jdsitecare.com/asp-net-cloud-micro/</feedburner:origLink></item>
		<item>
		<title>asp.net Lime Micro</title>
		<link>http://feedproxy.google.com/~r/JdSiteCareBlog/~3/XquJdH-S9rw/</link>
		<comments>http://jdsitecare.com/asp-net-lime-micro/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 07:56:20 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET Templates]]></category>
		<category><![CDATA[asp.net 4.0]]></category>
		<category><![CDATA[cherry]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=311</guid>
		<description><![CDATA[This theme here has a lime color for the header and menu section and a black background. The page has a light green glow around the page which gives it a neat effect to the theme. Refer to this page for instructions on installing the theme template. Download the asp.net Website Lime theme Share and [...]]]></description>
			<content:encoded><![CDATA[<p>This theme here has a lime color for the header and menu section and a black background.<br />
The page has a light green glow around the page which gives it a neat effect to the theme.<br />
Refer to <a href="http://jdsitecare.com/asp-net-cherry-micro-template/">this page</a> for instructions on installing the theme template.</p>
<p>Download the <a href="http://jdsitecare.com/wp-content/uploads/2010/06/asp.net-Website-Lime.zip">asp.net Website Lime</a> theme</p>
<div id="attachment_315" class="wp-caption aligncenter" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/limeMicro.png"><img class="size-medium wp-image-315" title="limeMicro" src="http://jdsitecare.com/wp-content/uploads/2010/06/limeMicro-300x174.png" alt="" width="300" height="174" /></a><p class="wp-caption-text">Lime Micro</p></div>
<p style="text-align: center;">
<p style="text-align: center;">
<fb:like href=http://jdsitecare.com/asp-net-lime-micro/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-lime-micro%2F&amp;title=asp.net%20Lime%20Micro&amp;bodytext=This%20theme%20here%20has%20a%20lime%20color%20for%20the%20header%20and%20menu%20section%20and%20a%20black%20background.%0D%0AThe%20page%20has%20a%20light%20green%20glow%20around%20the%20page%20which%20gives%20it%20a%20neat%20effect%20to%20the%20theme.%0D%0ARefer%20to%20this%20page%20for%20instructions%20on%20installing%20the%20theme%20template" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fasp-net-lime-micro%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-lime-micro%2F&amp;title=asp.net%20Lime%20Micro&amp;notes=This%20theme%20here%20has%20a%20lime%20color%20for%20the%20header%20and%20menu%20section%20and%20a%20black%20background.%0D%0AThe%20page%20has%20a%20light%20green%20glow%20around%20the%20page%20which%20gives%20it%20a%20neat%20effect%20to%20the%20theme.%0D%0ARefer%20to%20this%20page%20for%20instructions%20on%20installing%20the%20theme%20template" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fasp-net-lime-micro%2F&amp;t=asp.net%20Lime%20Micro" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-lime-micro%2F&amp;title=asp.net%20Lime%20Micro" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fasp-net-lime-micro%2F&amp;title=asp.net%20Lime%20Micro&amp;annotation=This%20theme%20here%20has%20a%20lime%20color%20for%20the%20header%20and%20menu%20section%20and%20a%20black%20background.%0D%0AThe%20page%20has%20a%20light%20green%20glow%20around%20the%20page%20which%20gives%20it%20a%20neat%20effect%20to%20the%20theme.%0D%0ARefer%20to%20this%20page%20for%20instructions%20on%20installing%20the%20theme%20template" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-lime-micro%2F&amp;title=asp.net%20Lime%20Micro" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=XquJdH-S9rw:90s9RuxsJMY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=XquJdH-S9rw:90s9RuxsJMY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=XquJdH-S9rw:90s9RuxsJMY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=XquJdH-S9rw:90s9RuxsJMY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=XquJdH-S9rw:90s9RuxsJMY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=XquJdH-S9rw:90s9RuxsJMY:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/JdSiteCareBlog/~4/XquJdH-S9rw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-lime-micro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://jdsitecare.com/asp-net-lime-micro/</feedburner:origLink></item>
		<item>
		<title>asp.net Cherry Micro Template</title>
		<link>http://feedproxy.google.com/~r/JdSiteCareBlog/~3/IUywnQM2MMc/</link>
		<comments>http://jdsitecare.com/asp-net-cherry-micro-template/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 20:33:18 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET Templates]]></category>
		<category><![CDATA[asp.net 4.0]]></category>
		<category><![CDATA[cherry]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=303</guid>
		<description><![CDATA[This is a template that can be imported into your Visual Web Developer 2010. I haven&#8217;t tried this in Visual Studio 2010 but i&#8217;m pretty sure it will work as well cause it&#8217;s the default asp.net website template with some modifications added. I&#8217;m not sure if there&#8217;s a Import section to import templates or not [...]]]></description>
			<content:encoded><![CDATA[<p>This is a template that can be imported into your Visual Web Developer 2010.<br />
I haven&#8217;t tried this in Visual Studio 2010 but i&#8217;m pretty sure it will work as well cause it&#8217;s the default asp.net website template with some modifications added.<br />
I&#8217;m not sure if there&#8217;s a Import section to import templates or not so i will show you how to add the template into your Web Developer.</p>
<ul>
<li>Download the <a href="http://jdsitecare.com/wp-content/uploads/2010/06/asp.net-Website-Cherry.zip">asp.net Website Cherry</a> zip file</li>
<li>Take the zip file and place it in
<ul>
<li>My Documents &gt; Visual Studio 2010 &gt; My Exported Templates</li>
</ul>
</li>
</ul>
<p>Once you do this you can fire up Visual Web Developer and create a new website.<br />
You should see the new template called <strong>asp.net website cherry</strong><br />
Go a head and click on it and give your site a name than click Ok.<br />
You should now see the new template.</p>
<p style="text-align: center;">
<div id="attachment_304" class="wp-caption aligncenter" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/cherrymicro1.png"><img class="size-medium wp-image-304" title="Cherry Micro" src="http://jdsitecare.com/wp-content/uploads/2010/06/cherrymicro1-300x223.png" alt="Cherry Micro" width="300" height="223" /></a><p class="wp-caption-text">Cherry Micro Template</p></div>
<div id="attachment_306" class="wp-caption aligncenter" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/cherrymicro2.png"><img class="size-medium wp-image-306" title="cherrymicro2" src="http://jdsitecare.com/wp-content/uploads/2010/06/cherrymicro2-300x223.png" alt="" width="300" height="223" /></a><p class="wp-caption-text">Cherry Micro Menu</p></div>
<fb:like href=http://jdsitecare.com/asp-net-cherry-micro-template/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-cherry-micro-template%2F&amp;title=asp.net%20Cherry%20Micro%20Template&amp;bodytext=This%20is%20a%20template%20that%20can%20be%20imported%20into%20your%20Visual%20Web%20Developer%202010.%0D%0AI%20haven%27t%20tried%20this%20in%20Visual%20Studio%202010%20but%20i%27m%20pretty%20sure%20it%20will%20work%20as%20well%20cause%20it%27s%20the%20default%20asp.net%20website%20template%20with%20some%20modifications%20added.%0D%0AI%27m%20not%20" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fasp-net-cherry-micro-template%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-cherry-micro-template%2F&amp;title=asp.net%20Cherry%20Micro%20Template&amp;notes=This%20is%20a%20template%20that%20can%20be%20imported%20into%20your%20Visual%20Web%20Developer%202010.%0D%0AI%20haven%27t%20tried%20this%20in%20Visual%20Studio%202010%20but%20i%27m%20pretty%20sure%20it%20will%20work%20as%20well%20cause%20it%27s%20the%20default%20asp.net%20website%20template%20with%20some%20modifications%20added.%0D%0AI%27m%20not%20" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fasp-net-cherry-micro-template%2F&amp;t=asp.net%20Cherry%20Micro%20Template" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-cherry-micro-template%2F&amp;title=asp.net%20Cherry%20Micro%20Template" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fasp-net-cherry-micro-template%2F&amp;title=asp.net%20Cherry%20Micro%20Template&amp;annotation=This%20is%20a%20template%20that%20can%20be%20imported%20into%20your%20Visual%20Web%20Developer%202010.%0D%0AI%20haven%27t%20tried%20this%20in%20Visual%20Studio%202010%20but%20i%27m%20pretty%20sure%20it%20will%20work%20as%20well%20cause%20it%27s%20the%20default%20asp.net%20website%20template%20with%20some%20modifications%20added.%0D%0AI%27m%20not%20" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fasp-net-cherry-micro-template%2F&amp;title=asp.net%20Cherry%20Micro%20Template" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/><div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=IUywnQM2MMc:qrWfqWk6uWQ:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=IUywnQM2MMc:qrWfqWk6uWQ:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=IUywnQM2MMc:qrWfqWk6uWQ:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=IUywnQM2MMc:qrWfqWk6uWQ:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/JdSiteCareBlog?a=IUywnQM2MMc:qrWfqWk6uWQ:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/JdSiteCareBlog?i=IUywnQM2MMc:qrWfqWk6uWQ:gIN9vFwOqvQ" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/JdSiteCareBlog/~4/IUywnQM2MMc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-cherry-micro-template/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://jdsitecare.com/asp-net-cherry-micro-template/</feedburner:origLink></item>
	</channel>
</rss>
