<?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>JD Site Care &#187; ASP.NET</title>
	<atom:link href="http://jdsitecare.com/category/trunk/asp-net/feed/" rel="self" type="application/rss+xml" />
	<link>http://jdsitecare.com</link>
	<description>Installing Scripts for You</description>
	<lastBuildDate>Sat, 04 Sep 2010 22:59:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>ASP.NET Content Data Driven</title>
		<link>http://jdsitecare.com/asp-net-content-data-driven/</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/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-content-data-driven/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Template Modifying</title>
		<link>http://jdsitecare.com/asp-net-template-modifying/</link>
		<comments>http://jdsitecare.com/asp-net-template-modifying/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 19:46:35 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[asp.net 4]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[styles]]></category>
		<category><![CDATA[visual studio 2010]]></category>
		<category><![CDATA[visual web developer 2010]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=295</guid>
		<description><![CDATA[This tutorial is rather simple but for those who want to learn how to do it should continue reading. In this tutorial we are going to spice up the default template provided by Visual Studio/Web Developer 2010. Here is what the tutorial is going to focus on: There are 2 styles we are going to [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial is rather simple but for those who want to learn how to do it should continue reading.<br />
In this tutorial we are going to spice up the default template provided by Visual Studio/Web Developer 2010.<br />
Here is what the tutorial is going to focus on:</p>
<div id="attachment_296" class="wp-caption aligncenter" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/aspnet.png"><img class="size-medium wp-image-296" title="aspnet" src="http://jdsitecare.com/wp-content/uploads/2010/06/aspnet-300x166.png" alt="" width="300" height="166" /></a><p class="wp-caption-text">View Full Size</p></div>
<p>There are 2 styles we are going to look at</p>
<ol>
<li>Drop Shadow</li>
<li>Rounded Corners</li>
</ol>
<p>This will not be done using any images, it&#8217;s going to be CSS3.</p>
<p><em><span style="color: #ff0000;">Note! These styles will not be picked up in the current or previous versions of Internet Explorer 8.0<br />
When applying any CSS3 styles to your web apps, make sure those items can be displayed correctly in internet explorer as well.<br />
The image you see above will be displayed in IE without the drop shadow and rounded corners.</span></em></p>
<p><span style="color: #ff0000;"><span style="color: #000000;">With all that out of the way, lets get started.</span></span></p>
<ul>
<li><span style="color: #ff0000;"><span style="color: #000000;">Fire up Visual Web Developer 2010 or Visual Studio 2010</span></span></li>
<li><span style="color: #ff0000;"><span style="color: #000000;">Create a new project or a new Website (Shown in Screen 1.1</span></span></li>
</ul>
<p style="text-align: center;"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/aspnet_newwebsite.png"><img class="aligncenter size-full wp-image-297" title="aspnet_newwebsite" src="http://jdsitecare.com/wp-content/uploads/2010/06/aspnet_newwebsite.png" alt="" width="494" height="305" /></a></p>
<ul>
<li>Once your website has been created navigate to
<ul>
<li>Styles -&gt; Site.css and double click it to open it.</li>
</ul>
</li>
<li>There are 2 css classes we need to modify
<ol>
<li>page</li>
<li>header</li>
</ol>
</li>
<li>Scroll down to the <span style="color: #993300;">page</span> class (it should look like this:</li>
</ul>
<p><code><br />
.page<br />
{<br />
width: 960px;<br />
background-color: #fff;<br />
margin: 20px auto 0px auto;<br />
border: 1px solid #496077;<br />
}<br />
</code></p>
<ul>
<li>Under the <span style="color: #ff0000;">border:  <span style="color: #0000ff;">1px solid #496077; <span style="color: #000000;">add these 4 lines</span></span></span></li>
</ul>
<p><code>-moz-border-radius: 12px;<br />
-webkit-border-radius: 12px;<br />
-moz-box-shadow: 15px -15px 9px #333;<br />
-webkit-box-shadow: 15px 15px 9 #333;</code><br />
-moz is mozilla based web browser and -webkit is safari, chrome based  browsers</p>
<ul>
<li>Scroll down to the <span style="color: #993300;">header <span style="color: #000000;">class (it should look like this:)</span></span></li>
</ul>
<p><code><br />
.header<br />
{<br />
position: relative;<br />
margin: 0px;<br />
padding: 0px;<br />
background: #4b6c9e;<br />
width: 100%;<br />
}</code></p>
<ul>
<li>Under the <span style="color: #ff0000;">background:</span> <span style="color: #0000ff;">#4b6c9e;</span> add these 2 lines</li>
</ul>
<p><code>-moz-border-radius: 10px;<br />
-webkit-border-radius: 10px;</code><br />
You may need to adjust the 10px to a lower or higher number to look the way you want it to.<br />
Now if you save your Site.css file and view your default page or some other page in a browser outside of IE you should now see the changes take effect.</p>
<p>The page class is the page itself where everything is located (menu, content area, footer etc.)<br />
That&#8217;s where we want the drop shadow to appear as well as the rounded corners.<br />
Here&#8217;s the comparison in browsers between Firefox and IE</p>
<div id="attachment_298" class="wp-caption aligncenter" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/aspnetcompare_ff.png"><img class="size-medium wp-image-298" title="aspnetcompare_ff" src="http://jdsitecare.com/wp-content/uploads/2010/06/aspnetcompare_ff-300x168.png" alt="" width="300" height="168" /></a><p class="wp-caption-text">Firefox 3.6.3</p></div>
<div id="attachment_299" class="wp-caption aligncenter" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/aspnetcompare_ie.png"><img class="size-medium wp-image-299" title="aspnetcompare_ie" src="http://jdsitecare.com/wp-content/uploads/2010/06/aspnetcompare_ie-300x167.png" alt="" width="300" height="167" /></a><p class="wp-caption-text">Internet Explorer 8.0</p></div>
<p>To get more information and more goodies using css3 visit the <a href="http://www.css3.info" target="_blank">css3.info</a> website.<br />
You can apply more styles to your website to make it look much nicer.<br />
Hopefully this tutorial has helped in spicing up your website.</p>
<fb:like href=http://jdsitecare.com/asp-net-template-modifying/ 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-template-modifying%2F&amp;title=ASP.NET%20Template%20Modifying&amp;bodytext=This%20tutorial%20is%20rather%20simple%20but%20for%20those%20who%20want%20to%20learn%20how%20to%20do%20it%20should%20continue%20reading.%0D%0AIn%20this%20tutorial%20we%20are%20going%20to%20spice%20up%20the%20default%20template%20provided%20by%20Visual%20Studio%2FWeb%20Developer%202010.%0D%0AHere%20is%20what%20the%20tutorial%20is%20going%20to%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-template-modifying%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-template-modifying%2F&amp;title=ASP.NET%20Template%20Modifying&amp;notes=This%20tutorial%20is%20rather%20simple%20but%20for%20those%20who%20want%20to%20learn%20how%20to%20do%20it%20should%20continue%20reading.%0D%0AIn%20this%20tutorial%20we%20are%20going%20to%20spice%20up%20the%20default%20template%20provided%20by%20Visual%20Studio%2FWeb%20Developer%202010.%0D%0AHere%20is%20what%20the%20tutorial%20is%20going%20to%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-template-modifying%2F&amp;t=ASP.NET%20Template%20Modifying" 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-template-modifying%2F&amp;title=ASP.NET%20Template%20Modifying" 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-template-modifying%2F&amp;title=ASP.NET%20Template%20Modifying&amp;annotation=This%20tutorial%20is%20rather%20simple%20but%20for%20those%20who%20want%20to%20learn%20how%20to%20do%20it%20should%20continue%20reading.%0D%0AIn%20this%20tutorial%20we%20are%20going%20to%20spice%20up%20the%20default%20template%20provided%20by%20Visual%20Studio%2FWeb%20Developer%202010.%0D%0AHere%20is%20what%20the%20tutorial%20is%20going%20to%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-template-modifying%2F&amp;title=ASP.NET%20Template%20Modifying" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-template-modifying/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Loginview Roles</title>
		<link>http://jdsitecare.com/asp-net-loginview-roles/</link>
		<comments>http://jdsitecare.com/asp-net-loginview-roles/#comments</comments>
		<pubDate>Sun, 13 Jun 2010 04:01:43 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[loginview]]></category>
		<category><![CDATA[membership]]></category>
		<category><![CDATA[roles]]></category>
		<category><![CDATA[template]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=293</guid>
		<description><![CDATA[In this video tutorial i will show you how you can create a role template using the loginview control. By default the loginview control has 2 templates Anonymous and Logged In. We are going to create another template based on the Administrator role i will create using the asp.net configuration tool. Than i will show [...]]]></description>
			<content:encoded><![CDATA[<p>In this video tutorial i will show you how you can create a role template using the loginview control. By default the loginview control has 2 templates Anonymous and Logged In. We are going to create another template based on the Administrator role i will create using the asp.net configuration tool. Than i will show you how it works and how you could use this in your asp.net web applications.</p>
<div style="border: 5px double #021939; background-color: #597791; padding: 8px; width: 480px; height: 385px;">
<object width="480" height="385"><param name="movie" value="http://www.youtube.com/v/Yj1Iu2RaEdE&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;color1=0x2b405b&#038;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Yj1Iu2RaEdE&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;color1=0x2b405b&#038;color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object>
</div>
<fb:like href=http://jdsitecare.com/asp-net-loginview-roles/ 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-loginview-roles%2F&amp;title=ASP.NET%20Loginview%20Roles&amp;bodytext=In%20this%20video%20tutorial%20i%20will%20show%20you%20how%20you%20can%20create%20a%20role%20template%20using%20the%20loginview%20control.%20By%20default%20the%20loginview%20control%20has%202%20templates%20Anonymous%20and%20Logged%20In.%20We%20are%20going%20to%20create%20another%20template%20based%20on%20the%20Administrator%20role%20i" 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-loginview-roles%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-loginview-roles%2F&amp;title=ASP.NET%20Loginview%20Roles&amp;notes=In%20this%20video%20tutorial%20i%20will%20show%20you%20how%20you%20can%20create%20a%20role%20template%20using%20the%20loginview%20control.%20By%20default%20the%20loginview%20control%20has%202%20templates%20Anonymous%20and%20Logged%20In.%20We%20are%20going%20to%20create%20another%20template%20based%20on%20the%20Administrator%20role%20i" 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-loginview-roles%2F&amp;t=ASP.NET%20Loginview%20Roles" 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-loginview-roles%2F&amp;title=ASP.NET%20Loginview%20Roles" 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-loginview-roles%2F&amp;title=ASP.NET%20Loginview%20Roles&amp;annotation=In%20this%20video%20tutorial%20i%20will%20show%20you%20how%20you%20can%20create%20a%20role%20template%20using%20the%20loginview%20control.%20By%20default%20the%20loginview%20control%20has%202%20templates%20Anonymous%20and%20Logged%20In.%20We%20are%20going%20to%20create%20another%20template%20based%20on%20the%20Administrator%20role%20i" 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-loginview-roles%2F&amp;title=ASP.NET%20Loginview%20Roles" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-loginview-roles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Membership Sytem In VS2010</title>
		<link>http://jdsitecare.com/asp-net-membership-sytem-in-vs2010/</link>
		<comments>http://jdsitecare.com/asp-net-membership-sytem-in-vs2010/#comments</comments>
		<pubDate>Sat, 12 Jun 2010 03:27:59 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[asp.net 4]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[login controls]]></category>
		<category><![CDATA[membership system]]></category>
		<category><![CDATA[visual]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=281</guid>
		<description><![CDATA[When i first fired up VS2010 i created a new asp.net website. I couldn&#8217;t help bug get all bug eyed with the results when my project was created successfully. Not only did it come with a premade default template but it also has the membership system included without having to do anything at all. If [...]]]></description>
			<content:encoded><![CDATA[<p>When i first fired up VS2010 i created a new asp.net website.<br />
I couldn&#8217;t help bug get all bug eyed with the results when my project was created successfully.<br />
Not only did it come with a premade default template but it also has the membership system included without having to do anything at all.<br />
If you&#8217;re new to Visual Studio 2010 or just new to Visual Web Developer, i wanna go over the Membership Controls that have been provided to us.<br />
I am using VS2010 but the same applies for previous versions as well.</p>
<h1>Visual Controls</h1>
<p>If you take a look in your Toolbox, you will notice a Login section.<br />
This is where all your login controls are stored.</p>
<div id="attachment_282" class="wp-caption aligncenter" style="width: 203px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/logincontrols.png"><img class="size-full wp-image-282" title="logincontrols" src="http://jdsitecare.com/wp-content/uploads/2010/06/logincontrols.png" alt="" width="193" height="186" /></a><p class="wp-caption-text">Login Controls</p></div>
<p style="text-align: center;">
<p>These are the controls that allow you to run a standard membership based website.<br />
Don&#8217;t be fooled by this by thinking this is all that&#8217;s offered for our membership system cause it&#8217;s not.<br />
There&#8217;s a ASP.NET Configuration Tool that&#8217;s available for us that lets us do a lot more, we will get into that later on.<br />
Lets take a look at these controls and see what they do</p>
<p><span style="color: #333399;"><strong>Change Password</strong></span></p>
<p><span style="color: #333399;"><span style="color: #000000;">When you drag a instance of the ChangePassword control onto your form it will create a template with the appropriate fields that will change your password on request</span></span></p>
<p><span style="color: #333399;"><span style="color: #000000;"> </span></span></p>
<div id="attachment_283" class="wp-caption aligncenter" style="width: 424px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/change-password.png"><img class="size-full wp-image-283" title="change password" src="http://jdsitecare.com/wp-content/uploads/2010/06/change-password.png" alt="" width="414" height="160" /></a><p class="wp-caption-text">Change Password</p></div>
<p><strong><span style="color: #333399;">Create User Wizard</span></strong></p>
<p><span style="color: #333399;"><span style="color: #000000;">When you drag a instance of the CreateUserWizard on to your form it will create a template with the appropriate registration fields.<br />
There are several customizable options that are available for this control.<br />
If you click on the little Arrow at the top right corner of the control you will see a list of customizations you can make.</span></span></p>
<p><span style="color: #333399;"><span style="color: #000000;"> </span></span></p>
<div id="attachment_284" class="wp-caption aligncenter" style="width: 293px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/create-user.png"><img class="size-full wp-image-284" title="create user" src="http://jdsitecare.com/wp-content/uploads/2010/06/create-user.png" alt="" width="283" height="319" /></a><p class="wp-caption-text">Create User Wizard</p></div>
<p><span style="color: #333399;"><strong>Login</strong></span></p>
<p><span style="color: #333399;"><span style="color: #000000;">This control is the user Login section.<br />
This control provides the standard User Name and Password fields.<br />
</span></span></p>
<p><span style="color: #333399;"><span style="color: #000000;"> </span></span></p>
<div id="attachment_285" class="wp-caption aligncenter" style="width: 249px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/login.png"><img class="size-full wp-image-285" title="login" src="http://jdsitecare.com/wp-content/uploads/2010/06/login.png" alt="" width="239" height="135" /></a><p class="wp-caption-text">Login</p></div>
<p><span style="color: #333399;"><strong>Login Name</strong></span></p>
<p><span style="color: #333399;"><span style="color: #000000;">When you drag a instance of the LoginName on to your form it will display the current logged in User Name.<br />
This kind of control can be used several times on any given page.<br />
When you drag it on to your form you will see something that looks like this</span></span></p>
<p><span style="color: #333399;"><span style="color: #000000;">[LoginName]</span></span></p>
<p><span style="color: #333399;"><span style="color: #000000;"><strong><span style="color: #333399;">Login Status</span></strong></span></span></p>
<p><span style="color: #333399;"><span style="color: #000000;"><span style="color: #333399;"><span style="color: #000000;">When you drag a instance of the LoginStatus on to your form it will display your status.<br />
You can click on the control on the form and click the Arrow, you will notice you have 2 views</span></span></span></span></p>
<ol>
<li>Logged Out</li>
<li>Logged In</li>
</ol>
<p>What you see is what the user will see when they visit your website.<br />
If you click on the links and check out the properties window, you can set properties for that control.</p>
<div id="attachment_286" class="wp-caption aligncenter" style="width: 246px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/login-status-properties.png"><img class="size-full wp-image-286" title="login status properties" src="http://jdsitecare.com/wp-content/uploads/2010/06/login-status-properties.png" alt="" width="236" height="563" /></a><p class="wp-caption-text">Login Status Properties</p></div>
<p><span style="color: #333399;"><strong>Login View</strong></span></p>
<p><span style="color: #333399;"><span style="color: #000000;">This is a important control when enabling your site with the membership system.<br />
The LoginView control comes with 2 templates</span></span></p>
<ol>
<li><span style="color: #333399;"><span style="color: #000000;">Anonymous Template</span></span></li>
<li><span style="color: #333399;"><span style="color: #000000;">Logged In Template</span></span></li>
</ol>
<p>By default, when you drag this on to your form it&#8217;s set to the Anonymous Template.<br />
Anything you put in here will be viewable to users NOT logged in<br />
If you switch to the Logged In Template, anything you put in here will be viewable to Logged in users only.<br />
You can use many of  these controls on any given web page.<br />
This allows you to protect your content and control who can and can&#8217;t see certain content within your website.</p>
<div id="attachment_287" class="wp-caption aligncenter" style="width: 247px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/loginview-anonymous.png"><img class="size-full wp-image-287 " title="loginview anonymous" src="http://jdsitecare.com/wp-content/uploads/2010/06/loginview-anonymous.png" alt="" width="237" height="62" /></a>Not Logged In</dt>
</dl>
</div>
<div class="mceTemp mceIEcenter">
<dl id="attachment_287" class="wp-caption aligncenter" style="width: 247px;">
<dt class="wp-caption-dt"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/loginview-anonymous.png"><img class="size-full wp-image-287" title="loginview anonymous" src="http://jdsitecare.com/wp-content/uploads/2010/06/loginview-anonymous.png" alt="" width="237" height="62" /></a><p class="wp-caption-text">Not Logged In</p></div>
<p><span style="color: #333399;"><strong>Password Recovery</strong></span></p>
<p><span style="color: #333399;"><span style="color: #000000;">Like the other controls i talked about, this one works the same way.<br />
When you drag a PasswordRecovery control on to your page it will create a wizard like control.<br />
This allows you to recover your password providing the security question is answered correctly.</span></span></p>
<p><span style="color: #333399;"><span style="color: #000000;"></p>
<div id="attachment_290" class="wp-caption aligncenter" style="width: 332px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/password-recovery.png"><img class="size-full wp-image-290" title="password recovery" src="http://jdsitecare.com/wp-content/uploads/2010/06/password-recovery.png" alt="" width="322" height="115" /></a><p class="wp-caption-text">Password Recovery</p></div>
<p></span></span><span style="color: #333399;"><span style="color: #000000;"> </span></span></p>
<h1>Visual Controls In Source Code</h1>
<p>If you prefer to code as much as you can in Source View mode than adding these controls are easy.<br />
I will show you the code that makes up each of these controls.<br />
If you have dragged any of the above controls on to your form and you switched to Source or Code view than some of these will look familiar.</p>
<p><span style="color: #003366;"><strong>Change Password</strong></span></p>
<blockquote><p>&lt;asp:ChangePassword ID=&#8221;ChangePassword1&#8243; runat=&#8221;server&#8221;&gt;<br />
&lt;/asp:ChangePassword&gt;</p></blockquote>
<p><span style="color: #003366;"><strong>Create User Wizard</strong></span></p>
<blockquote><p>&lt;asp:CreateUserWizard ID=&#8221;CreateUserWizard1&#8243; runat=&#8221;server&#8221;&gt;<br />
&lt;WizardSteps&gt;<br />
&lt;asp:CreateUserWizardStep runat=&#8221;server&#8221; /&gt;<br />
&lt;asp:CompleteWizardStep runat=&#8221;server&#8221; /&gt;<br />
&lt;/WizardSteps&gt;<br />
&lt;/asp:CreateUserWizard&gt;</p></blockquote>
<p><span style="color: #003366;"><strong><span style="color: #003366;">Login</span></strong></span></p>
<blockquote><p>&lt;asp:Login ID=&#8221;Login1&#8243; runat=&#8221;server&#8221;&gt;<br />
&lt;/asp:Login&gt;</p></blockquote>
<p><span style="color: #003366;"><strong>Login Name</strong></span></p>
<blockquote><p><span style="color: #003366;"> </span>&lt;asp:LoginName ID=&#8221;Loginname1&#8243; runat=&#8221;server&#8221; /&gt;</p></blockquote>
<p><span style="color: #003366;"><strong><span style="color: #003366;"><span style="color: #003366;">Login Status</span></span></strong></span></p>
<blockquote><p>&lt;asp:LoginStatus ID=&#8221;LoginStatus1&#8243; runat=&#8221;server&#8221; /&gt;</p></blockquote>
<p><span style="color: #003366;"><strong><span style="color: #003366;"><span style="color: #003366;"> </span></span>Login View</strong></span></p>
<blockquote><p>&lt;asp:LoginView ID=&#8221;LoginView1&#8243; runat=&#8221;server&#8221;&gt;<br />
&lt;AnonymousTemplate&gt;</p>
<p>&lt;/AnonymousTemplate&gt;<br />
&lt;LoggedInTemplate&gt;</p>
<p>&lt;/LoggedInTemplate&gt;<br />
&lt;/asp:LoginView&gt;</p></blockquote>
<p><span style="color: #003366;"><strong><span style="color: #003366;">Password Recovery</span></strong></span></p>
<blockquote><p>&lt;asp:PasswordRecovery ID=&#8221;PasswordRecovery2&#8243; runat=&#8221;server&#8221;&gt;<br />
&lt;/asp:PasswordRecovery&gt;</p></blockquote>
<p><span style="color: #003366;"><span style="color: #003366;"><span style="color: #000000;">So you can see how easy it is to add these controls to your webform easily.<br />
After adding in your code and going back to Design Mode, you will see the control sitting on your form.<br />
You can click on it to access the properties for that control.</span></span></span></p>
<p><span style="color: #003366;"><span style="color: #003366;"><span style="color: #000000;">If you used VS2010 and created a asp.net blank website you will need to add these controls to the pages than configure the site to use the memebrship system.<br />
You can access the asp.net configuration tool by going to your Solution Explorer.<br />
Located to the top are some icons, click the globe and hammer icon.<br />
This will open your asp.net configuration tool via web browser.</span></span></span></p>
<p><span style="color: #003366;"><span style="color: #003366;"><span style="color: #000000;">If you create a asp.net website a default site will be created with all the login controls added, pages created that hold some of these controls and the asp.net configuration tool is already configured.<br />
All you have to do now is press F5 or right click and choose View In Browser.<br />
You will now be able to register, login etc.</span></span></span></p>
<p><span style="color: #003366;"><span style="color: #003366;"><span style="color: #000000;"><em>This tutorial was focused on the login control inside Visual Studio 2010.<br />
The controls are also available in 2005 and 2008 as well as Visual Web Developer.<br />
This tutorial does not focus on the asp.net configuration tool.</em><br />
</span></span></span></p>
<fb:like href=http://jdsitecare.com/asp-net-membership-sytem-in-vs2010/ 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-membership-sytem-in-vs2010%2F&amp;title=ASP.NET%20Membership%20Sytem%20In%20VS2010&amp;bodytext=When%20i%20first%20fired%20up%20VS2010%20i%20created%20a%20new%20asp.net%20website.%0D%0AI%20couldn%27t%20help%20bug%20get%20all%20bug%20eyed%20with%20the%20results%20when%20my%20project%20was%20created%20successfully.%0D%0ANot%20only%20did%20it%20come%20with%20a%20premade%20default%20template%20but%20it%20also%20has%20the%20membership%20system" 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-membership-sytem-in-vs2010%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-membership-sytem-in-vs2010%2F&amp;title=ASP.NET%20Membership%20Sytem%20In%20VS2010&amp;notes=When%20i%20first%20fired%20up%20VS2010%20i%20created%20a%20new%20asp.net%20website.%0D%0AI%20couldn%27t%20help%20bug%20get%20all%20bug%20eyed%20with%20the%20results%20when%20my%20project%20was%20created%20successfully.%0D%0ANot%20only%20did%20it%20come%20with%20a%20premade%20default%20template%20but%20it%20also%20has%20the%20membership%20system" 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-membership-sytem-in-vs2010%2F&amp;t=ASP.NET%20Membership%20Sytem%20In%20VS2010" 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-membership-sytem-in-vs2010%2F&amp;title=ASP.NET%20Membership%20Sytem%20In%20VS2010" 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-membership-sytem-in-vs2010%2F&amp;title=ASP.NET%20Membership%20Sytem%20In%20VS2010&amp;annotation=When%20i%20first%20fired%20up%20VS2010%20i%20created%20a%20new%20asp.net%20website.%0D%0AI%20couldn%27t%20help%20bug%20get%20all%20bug%20eyed%20with%20the%20results%20when%20my%20project%20was%20created%20successfully.%0D%0ANot%20only%20did%20it%20come%20with%20a%20premade%20default%20template%20but%20it%20also%20has%20the%20membership%20system" 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-membership-sytem-in-vs2010%2F&amp;title=ASP.NET%20Membership%20Sytem%20In%20VS2010" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-membership-sytem-in-vs2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Membership Registration</title>
		<link>http://jdsitecare.com/asp-net-membership-registration/</link>
		<comments>http://jdsitecare.com/asp-net-membership-registration/#comments</comments>
		<pubDate>Sun, 23 May 2010 19:13:32 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[login]]></category>
		<category><![CDATA[membership]]></category>
		<category><![CDATA[register]]></category>
		<category><![CDATA[registration]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=245</guid>
		<description><![CDATA[This is a video i have redone on the asp.net membership register. No mic = no sound in the previous video but this video has sound. I will briefly go over how to get your website configured to work with the membership system, we will create a couple of users, 1 in the asp.net configuration [...]]]></description>
			<content:encoded><![CDATA[<p>This is a video i have redone on the asp.net membership register. No mic = no sound in the previous video but this video has sound. I will briefly go over how to get your website configured to work with the membership system, we will create a couple of users, 1 in the asp.net configuration tool and one from our website. Once registered we will log in and have our username displayed with a logout link.</p>
<div style="border: 5px double #021939; background-color: #597791; padding: 8px; width: 480px; height: 385px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ulEKns6f-0c&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/ulEKns6f-0c&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<fb:like href=http://jdsitecare.com/asp-net-membership-registration/ 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-membership-registration%2F&amp;title=ASP.NET%20Membership%20Registration&amp;bodytext=This%20is%20a%20video%20i%20have%20redone%20on%20the%20asp.net%20membership%20register.%20No%20mic%20%3D%20no%20sound%20in%20the%20previous%20video%20but%20this%20video%20has%20sound.%20I%20will%20briefly%20go%20over%20how%20to%20get%20your%20website%20configured%20to%20work%20with%20the%20membership%20system%2C%20we%20will%20create%20a%20couple%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-membership-registration%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-membership-registration%2F&amp;title=ASP.NET%20Membership%20Registration&amp;notes=This%20is%20a%20video%20i%20have%20redone%20on%20the%20asp.net%20membership%20register.%20No%20mic%20%3D%20no%20sound%20in%20the%20previous%20video%20but%20this%20video%20has%20sound.%20I%20will%20briefly%20go%20over%20how%20to%20get%20your%20website%20configured%20to%20work%20with%20the%20membership%20system%2C%20we%20will%20create%20a%20couple%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-membership-registration%2F&amp;t=ASP.NET%20Membership%20Registration" 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-membership-registration%2F&amp;title=ASP.NET%20Membership%20Registration" 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-membership-registration%2F&amp;title=ASP.NET%20Membership%20Registration&amp;annotation=This%20is%20a%20video%20i%20have%20redone%20on%20the%20asp.net%20membership%20register.%20No%20mic%20%3D%20no%20sound%20in%20the%20previous%20video%20but%20this%20video%20has%20sound.%20I%20will%20briefly%20go%20over%20how%20to%20get%20your%20website%20configured%20to%20work%20with%20the%20membership%20system%2C%20we%20will%20create%20a%20couple%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-membership-registration%2F&amp;title=ASP.NET%20Membership%20Registration" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-membership-registration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Data Styles Continued</title>
		<link>http://jdsitecare.com/asp-net-data-styles-continued/</link>
		<comments>http://jdsitecare.com/asp-net-data-styles-continued/#comments</comments>
		<pubDate>Tue, 04 May 2010 03:32:09 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=211</guid>
		<description><![CDATA[In this final video we add css classes to the gridview itself, create those classes in our css file and watch them take effect. It&#8217;s not the idea to make it pretty and if i was to think this style is the best looking than i shouldn&#8217;t even be doing this kind of stuff lol [...]]]></description>
			<content:encoded><![CDATA[<p>In this final video we add css classes to the gridview itself,  create those classes in our css file and watch them take effect. It&#8217;s not the idea to make it pretty and if i was to think this style is  the best looking than i shouldn&#8217;t even be doing this kind of stuff lol Enjoy the video</p>
<div style="border: 5px double #021939; background-color: #597791; padding: 8px; width: 480px; height: 385px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/gcZ_ZbthfRg&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube-nocookie.com/v/gcZ_ZbthfRg&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<fb:like href=http://jdsitecare.com/asp-net-data-styles-continued/ 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-data-styles-continued%2F&amp;title=ASP.NET%20Data%20Styles%20Continued&amp;bodytext=In%20this%20final%20video%20we%20add%20css%20classes%20to%20the%20gridview%20itself%2C%20%20create%20those%20classes%20in%20our%20css%20file%20and%20watch%20them%20take%20effect.%20It%27s%20not%20the%20idea%20to%20make%20it%20pretty%20and%20if%20i%20was%20to%20think%20this%20style%20is%20%20the%20best%20looking%20than%20i%20shouldn%27t%20even%20be%20doing%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-data-styles-continued%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-data-styles-continued%2F&amp;title=ASP.NET%20Data%20Styles%20Continued&amp;notes=In%20this%20final%20video%20we%20add%20css%20classes%20to%20the%20gridview%20itself%2C%20%20create%20those%20classes%20in%20our%20css%20file%20and%20watch%20them%20take%20effect.%20It%27s%20not%20the%20idea%20to%20make%20it%20pretty%20and%20if%20i%20was%20to%20think%20this%20style%20is%20%20the%20best%20looking%20than%20i%20shouldn%27t%20even%20be%20doing%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-data-styles-continued%2F&amp;t=ASP.NET%20Data%20Styles%20Continued" 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-data-styles-continued%2F&amp;title=ASP.NET%20Data%20Styles%20Continued" 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-data-styles-continued%2F&amp;title=ASP.NET%20Data%20Styles%20Continued&amp;annotation=In%20this%20final%20video%20we%20add%20css%20classes%20to%20the%20gridview%20itself%2C%20%20create%20those%20classes%20in%20our%20css%20file%20and%20watch%20them%20take%20effect.%20It%27s%20not%20the%20idea%20to%20make%20it%20pretty%20and%20if%20i%20was%20to%20think%20this%20style%20is%20%20the%20best%20looking%20than%20i%20shouldn%27t%20even%20be%20doing%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-data-styles-continued%2F&amp;title=ASP.NET%20Data%20Styles%20Continued" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-data-styles-continued/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Data Styles</title>
		<link>http://jdsitecare.com/asp-net-data-styles/</link>
		<comments>http://jdsitecare.com/asp-net-data-styles/#comments</comments>
		<pubDate>Tue, 04 May 2010 03:30:18 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=210</guid>
		<description><![CDATA[This video i focus on adding style to a gridview control using CSS. You can style your control using the properties panel but why not extend it by applying CSS. Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p>This video i focus on adding style to a gridview control using  CSS. You can style your control using the properties panel but why not extend  it by applying CSS.</p>
<div style="border: 5px double #021939; background-color: #597791; padding: 8px; width: 480px; height: 385px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/aGtlxzWrsxQ&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube-nocookie.com/v/aGtlxzWrsxQ&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<fb:like href=http://jdsitecare.com/asp-net-data-styles/ 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-data-styles%2F&amp;title=ASP.NET%20Data%20Styles&amp;bodytext=This%20video%20i%20focus%20on%20adding%20style%20to%20a%20gridview%20control%20using%20%20CSS.%20You%20can%20style%20your%20control%20using%20the%20properties%20panel%20but%20why%20not%20extend%20%20it%20by%20applying%20CSS.%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-data-styles%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-data-styles%2F&amp;title=ASP.NET%20Data%20Styles&amp;notes=This%20video%20i%20focus%20on%20adding%20style%20to%20a%20gridview%20control%20using%20%20CSS.%20You%20can%20style%20your%20control%20using%20the%20properties%20panel%20but%20why%20not%20extend%20%20it%20by%20applying%20CSS.%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-data-styles%2F&amp;t=ASP.NET%20Data%20Styles" 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-data-styles%2F&amp;title=ASP.NET%20Data%20Styles" 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-data-styles%2F&amp;title=ASP.NET%20Data%20Styles&amp;annotation=This%20video%20i%20focus%20on%20adding%20style%20to%20a%20gridview%20control%20using%20%20CSS.%20You%20can%20style%20your%20control%20using%20the%20properties%20panel%20but%20why%20not%20extend%20%20it%20by%20applying%20CSS.%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-data-styles%2F&amp;title=ASP.NET%20Data%20Styles" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-data-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Working With Styles Continued</title>
		<link>http://jdsitecare.com/asp-net-working-with-styles-continued/</link>
		<comments>http://jdsitecare.com/asp-net-working-with-styles-continued/#comments</comments>
		<pubDate>Mon, 03 May 2010 03:52:09 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[styles]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Theme]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=202</guid>
		<description><![CDATA[n this video i&#8217;m still continuing on with the styles however instead of assigning a class to a div tag i will be assigning a ID to it. Also for those who aren&#8217;t familiar with the CSS3 towards the end i will show you how to apply a rounded border effect without have to use [...]]]></description>
			<content:encoded><![CDATA[<p>n this video i&#8217;m still continuing on with the styles however  instead of assigning a class to a div tag i will be assigning a ID to  it. Also for those who aren&#8217;t familiar with the CSS3 towards the end i will  show you how to apply a rounded border effect without have to use  images. Note though that CSS3 isn&#8217;t fully integrated into all browsers yet so  some may pick up no rounded corners, just the standard square.<br />
<code> </code></p>
<div style="border: 5px double #021939; background-color: #597791; padding: 8px; width: 480px; height: 385px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/BS9EvCR7tUE&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube-nocookie.com/v/BS9EvCR7tUE&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<fb:like href=http://jdsitecare.com/asp-net-working-with-styles-continued/ 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-working-with-styles-continued%2F&amp;title=ASP.NET%20Working%20With%20Styles%20Continued&amp;bodytext=n%20this%20video%20i%27m%20still%20continuing%20on%20with%20the%20styles%20however%20%20instead%20of%20assigning%20a%20class%20to%20a%20div%20tag%20i%20will%20be%20assigning%20a%20ID%20to%20%20it.%20Also%20for%20those%20who%20aren%27t%20familiar%20with%20the%20CSS3%20towards%20the%20end%20i%20will%20%20show%20you%20how%20to%20apply%20a%20rounded%20border%20e" 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-working-with-styles-continued%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-working-with-styles-continued%2F&amp;title=ASP.NET%20Working%20With%20Styles%20Continued&amp;notes=n%20this%20video%20i%27m%20still%20continuing%20on%20with%20the%20styles%20however%20%20instead%20of%20assigning%20a%20class%20to%20a%20div%20tag%20i%20will%20be%20assigning%20a%20ID%20to%20%20it.%20Also%20for%20those%20who%20aren%27t%20familiar%20with%20the%20CSS3%20towards%20the%20end%20i%20will%20%20show%20you%20how%20to%20apply%20a%20rounded%20border%20e" 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-working-with-styles-continued%2F&amp;t=ASP.NET%20Working%20With%20Styles%20Continued" 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-working-with-styles-continued%2F&amp;title=ASP.NET%20Working%20With%20Styles%20Continued" 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-working-with-styles-continued%2F&amp;title=ASP.NET%20Working%20With%20Styles%20Continued&amp;annotation=n%20this%20video%20i%27m%20still%20continuing%20on%20with%20the%20styles%20however%20%20instead%20of%20assigning%20a%20class%20to%20a%20div%20tag%20i%20will%20be%20assigning%20a%20ID%20to%20%20it.%20Also%20for%20those%20who%20aren%27t%20familiar%20with%20the%20CSS3%20towards%20the%20end%20i%20will%20%20show%20you%20how%20to%20apply%20a%20rounded%20border%20e" 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-working-with-styles-continued%2F&amp;title=ASP.NET%20Working%20With%20Styles%20Continued" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-working-with-styles-continued/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Working With Styles</title>
		<link>http://jdsitecare.com/asp-net-working-with-styles/</link>
		<comments>http://jdsitecare.com/asp-net-working-with-styles/#comments</comments>
		<pubDate>Mon, 03 May 2010 03:50:15 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[styles]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Theme]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=201</guid>
		<description><![CDATA[In this video i am just gonna play around with styles and show you how you can use the style builder in visual studio to apply quick styles to your site essentially without having to right any code. If you&#8217;re using Visual Web Developer you can still follow along as this applies the same way. [...]]]></description>
			<content:encoded><![CDATA[<p>In this video i am just gonna play around with styles and show you  how you can use the style builder in visual studio to apply quick  styles to your site essentially without having to right any code. If you&#8217;re using Visual Web Developer you can still follow along as this  applies the same way.<br />
<code>
<div style="border:5px double #021939;background-color:#597791;padding:8px; width: 480px; height: 385px;">
<object width="480" height="385"><param name="movie" value="http://www.youtube-nocookie.com/v/kc8orEaSjvE&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;color1=0x2b405b&#038;color2=0x6b8ab6"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/kc8orEaSjvE&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;color1=0x2b405b&#038;color2=0x6b8ab6" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="480" height="385"></embed></object>
</div>
<p></code></p>
<fb:like href=http://jdsitecare.com/asp-net-working-with-styles/ 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-working-with-styles%2F&amp;title=ASP.NET%20Working%20With%20Styles&amp;bodytext=In%20this%20video%20i%20am%20just%20gonna%20play%20around%20with%20styles%20and%20show%20you%20%20how%20you%20can%20use%20the%20style%20builder%20in%20visual%20studio%20to%20apply%20quick%20%20styles%20to%20your%20site%20essentially%20without%20having%20to%20right%20any%20code.%20If%20you%27re%20using%20Visual%20Web%20Developer%20you%20can%20stil" 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-working-with-styles%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-working-with-styles%2F&amp;title=ASP.NET%20Working%20With%20Styles&amp;notes=In%20this%20video%20i%20am%20just%20gonna%20play%20around%20with%20styles%20and%20show%20you%20%20how%20you%20can%20use%20the%20style%20builder%20in%20visual%20studio%20to%20apply%20quick%20%20styles%20to%20your%20site%20essentially%20without%20having%20to%20right%20any%20code.%20If%20you%27re%20using%20Visual%20Web%20Developer%20you%20can%20stil" 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-working-with-styles%2F&amp;t=ASP.NET%20Working%20With%20Styles" 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-working-with-styles%2F&amp;title=ASP.NET%20Working%20With%20Styles" 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-working-with-styles%2F&amp;title=ASP.NET%20Working%20With%20Styles&amp;annotation=In%20this%20video%20i%20am%20just%20gonna%20play%20around%20with%20styles%20and%20show%20you%20%20how%20you%20can%20use%20the%20style%20builder%20in%20visual%20studio%20to%20apply%20quick%20%20styles%20to%20your%20site%20essentially%20without%20having%20to%20right%20any%20code.%20If%20you%27re%20using%20Visual%20Web%20Developer%20you%20can%20stil" 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-working-with-styles%2F&amp;title=ASP.NET%20Working%20With%20Styles" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-working-with-styles/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.NET Data Driven Site PT 4</title>
		<link>http://jdsitecare.com/asp-net-data-driven-site-pt-4/</link>
		<comments>http://jdsitecare.com/asp-net-data-driven-site-pt-4/#comments</comments>
		<pubDate>Sun, 02 May 2010 06:18:01 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=185</guid>
		<description><![CDATA[We will wrap our little project by inserting another record into our database than we will navigate both records by viewing each post individually. Instead of viewing all records by clicking on a post we&#8217;re interested in we will only see the data we&#8217;re interested in seeing. Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p>We will wrap our little project by inserting another record into our database than we will navigate both records by viewing each post individually. Instead of viewing all records by clicking on a post we&#8217;re interested in we will only see the data we&#8217;re interested in seeing.<br />
<code> </code></p>
<div style="border: 5px double #021939; background-color: #597791; padding: 8px; width: 480px; height: 385px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/71pl1ClSPoc&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube-nocookie.com/v/71pl1ClSPoc&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<fb:like href=http://jdsitecare.com/asp-net-data-driven-site-pt-4/ 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-data-driven-site-pt-4%2F&amp;title=ASP.NET%20Data%20Driven%20Site%20PT%204&amp;bodytext=We%20will%20wrap%20our%20little%20project%20by%20inserting%20another%20record%20into%20our%20database%20than%20we%20will%20navigate%20both%20records%20by%20viewing%20each%20post%20individually.%20Instead%20of%20viewing%20all%20records%20by%20clicking%20on%20a%20post%20we%27re%20interested%20in%20we%20will%20only%20see%20the%20data%20we%27" 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-data-driven-site-pt-4%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-data-driven-site-pt-4%2F&amp;title=ASP.NET%20Data%20Driven%20Site%20PT%204&amp;notes=We%20will%20wrap%20our%20little%20project%20by%20inserting%20another%20record%20into%20our%20database%20than%20we%20will%20navigate%20both%20records%20by%20viewing%20each%20post%20individually.%20Instead%20of%20viewing%20all%20records%20by%20clicking%20on%20a%20post%20we%27re%20interested%20in%20we%20will%20only%20see%20the%20data%20we%27" 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-data-driven-site-pt-4%2F&amp;t=ASP.NET%20Data%20Driven%20Site%20PT%204" 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-data-driven-site-pt-4%2F&amp;title=ASP.NET%20Data%20Driven%20Site%20PT%204" 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-data-driven-site-pt-4%2F&amp;title=ASP.NET%20Data%20Driven%20Site%20PT%204&amp;annotation=We%20will%20wrap%20our%20little%20project%20by%20inserting%20another%20record%20into%20our%20database%20than%20we%20will%20navigate%20both%20records%20by%20viewing%20each%20post%20individually.%20Instead%20of%20viewing%20all%20records%20by%20clicking%20on%20a%20post%20we%27re%20interested%20in%20we%20will%20only%20see%20the%20data%20we%27" 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-data-driven-site-pt-4%2F&amp;title=ASP.NET%20Data%20Driven%20Site%20PT%204" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/asp-net-data-driven-site-pt-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
