﻿<?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>How To ASP.NET Tutorials</title>
	<atom:link href="http://www.howtoasp.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.howtoasp.net</link>
	<description>Find the right ASP.NET Example for you!</description>
	<lastBuildDate>Mon, 29 Apr 2013 20:09:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>How to make the TextBox readonly or disabled  in ASP.NET</title>
		<link>http://www.howtoasp.net/asp-net-tutorials/how-to-make-the-textbox-readonly-or-disabled-in-asp-net/</link>
		
		<pubDate>Sat, 29 Dec 2012 10:37:06 +0000</pubDate>
				<category><![CDATA[ASP.NET Tutorials]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[asp.net 2.0]]></category>
		<category><![CDATA[asp.net 3.5]]></category>
		<category><![CDATA[asp.net 4.0]]></category>

		<guid isPermaLink="false">http://www.howtoasp.net/?p=5264</guid>
		<description><![CDATA[<p>This ASP.NET tutorial explains how to make the TextBox readonly or disabled  in ASP.NET.</p>
<p> </p>
<p style="text-align: justify;">You can make the TextBox control readonly by setting its ReadOnly property to true. You can set this property in the .aspx page which contains the TextBox control, or programmatically from the code-behind. The next test .aspx page shows this:</p>
<p>ReadOnlyTextBox.aspx</p>
<p>&#60;%@ [...]]]></description>
		<wfw:commentRss>http://www.howtoasp.net/asp-net-tutorials/how-to-make-the-textbox-readonly-or-disabled-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to render a password type textbox in ASP.NET</title>
		<link>http://www.howtoasp.net/asp-net-tutorials/how-to-render-a-password-type-textbox-in-asp-net/</link>
		
		<pubDate>Sat, 29 Dec 2012 10:31:20 +0000</pubDate>
				<category><![CDATA[ASP.NET Tutorials]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[asp.net 2.0]]></category>
		<category><![CDATA[asp.net 3.5]]></category>
		<category><![CDATA[asp.net 4.0]]></category>

		<guid isPermaLink="false">http://www.howtoasp.net/?p=5261</guid>
		<description><![CDATA[<p>This ASP.NET tutorial explains how to render a password type textbox in ASP.NET.</p>
<p> </p>
<p>You can render the TextBox control to as password type by setting its TextMode property to Password. The next test .aspx page shows this:</p>
<p> </p>
<p>TextBoxAsPassword.aspx</p>
<p> </p>
<p>&#60;%@ Page Language=&#8221;vb&#8221; AutoEventWireup=&#8221;false&#8221; CodeBehind=&#8221;TextBoxAsPassword.aspx.vb&#8221;</p>
<p>Inherits=&#8221;TextBoxSamplesVB.TextBoxAsPassword&#8221; %&#62;</p>
<p>&#60;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&#62;</p>
<p>&#60;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&#62;</p>
<p>&#60;head runat=&#8221;server&#8221;&#62;</p>
<p style="padding-left: 30px;">&#60;title&#62;Password type [...]]]></description>
		<wfw:commentRss>http://www.howtoasp.net/asp-net-tutorials/how-to-render-a-password-type-textbox-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to programmatically set the TextBox value and get the TextBox value in ASP.NET in VB.NET</title>
		<link>http://www.howtoasp.net/vb-net-tutorials/how-to-programmatically-set-the-textbox-value-and-get-the-textbox-value-in-asp-net-in-vb-net/</link>
		
		<pubDate>Sat, 29 Dec 2012 10:28:42 +0000</pubDate>
				<category><![CDATA[VB.NET Tutorials]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[asp.net 2.0]]></category>
		<category><![CDATA[asp.net 3.5]]></category>
		<category><![CDATA[asp.net 4.0]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false">http://www.howtoasp.net/?p=5257</guid>
		<description><![CDATA[<p>This ASP.NET tutorial explains how to programmatically set the TextBox value and get the TextBox value in ASP.NET in VB.NET.</p>
<p style="text-align: justify;">The next example uses a test.aspx page named SetAndGetTextBox.aspx which has two asp:Label controls and one asp:TextBox control. In the code behind the local string variable value is use to read in it the system [...]]]></description>
		<wfw:commentRss>http://www.howtoasp.net/vb-net-tutorials/how-to-programmatically-set-the-textbox-value-and-get-the-textbox-value-in-asp-net-in-vb-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to programmatically set the TextBox value and get the TextBox value in ASP.NET in C#</title>
		<link>http://www.howtoasp.net/c-sharp-tutorials/how-to-programmatically-set-the-textbox-value-and-get-the-textbox-value-in-asp-net-in-c/</link>
		
		<pubDate>Sat, 29 Dec 2012 10:24:44 +0000</pubDate>
				<category><![CDATA[C# Tutorials]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[asp.net 2.0]]></category>
		<category><![CDATA[asp.net 3.5]]></category>
		<category><![CDATA[asp.net 4.0]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.howtoasp.net/?p=5254</guid>
		<description><![CDATA[<p>This ASP.NET tutorial explains how to programmatically set the TextBox value and get the TextBox value in ASP.NET in C#.</p>
<p style="text-align: justify;">The next example uses a test.aspx page named SetAndGetTextBox.aspx which has two asp:Label controls and one asp:TextBox control. In the code behind the local string variable value is use to read in it the system [...]]]></description>
		<wfw:commentRss>http://www.howtoasp.net/c-sharp-tutorials/how-to-programmatically-set-the-textbox-value-and-get-the-textbox-value-in-asp-net-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to write encoded text on the web page in ASP.NET</title>
		<link>http://www.howtoasp.net/asp-net-tutorials-for-beginners/how-to-write-encoded-text-on-the-web-page-in-asp-net/</link>
		
		<pubDate>Sun, 23 Dec 2012 08:13:26 +0000</pubDate>
				<category><![CDATA[ASP.NET Tutorials for beginners]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[asp.net 2.0]]></category>
		<category><![CDATA[asp.net 3.5]]></category>
		<category><![CDATA[asp.net 4.0]]></category>

		<guid isPermaLink="false">http://www.howtoasp.net/?p=5250</guid>
		<description><![CDATA[<p>This ASP.NET tutorial explains how to write encoded text on the web page in ASP.NET.</p>
<p> </p>
<p style="text-align: justify;">When you want to write encoded text on the web page you should use the Literal control, because it does support a property that is not supported by the Label control: the Mode property. The property enables you to [...]]]></description>
		<wfw:commentRss>http://www.howtoasp.net/asp-net-tutorials-for-beginners/how-to-write-encoded-text-on-the-web-page-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to associate a Label with a TextBox or other Form control in ASP.NET</title>
		<link>http://www.howtoasp.net/asp-net-tutorials-for-beginners/how-to-associate-a-label-with-a-textbox-or-other-form-control-in-asp-net/</link>
		
		<pubDate>Sun, 23 Dec 2012 08:09:03 +0000</pubDate>
				<category><![CDATA[ASP.NET Tutorials for beginners]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[asp.net 2.0]]></category>
		<category><![CDATA[asp.net 3.5]]></category>
		<category><![CDATA[asp.net 4.0]]></category>

		<guid isPermaLink="false">http://www.howtoasp.net/?p=5247</guid>
		<description><![CDATA[<p>This ASP.NET tutorial explains how to associate a Label with a TextBox or other Form control in ASP.NET.</p>
<p> </p>
<p style="text-align: justify;">The next code shows how you can attach an asp:Label control with the asp:TextBox. In this case when the user clicks the Label the application will focus on the TextBox.</p>
<p>&#160;</p>
<p>TestAssociate.aspx</p>
<p>&#60;%@ Page Language=&#8221;vb&#8221; AutoEventWireup=&#8221;false&#8221; CodeBehind=&#8221;TestAssociate.aspx.vb&#8221; Inherits=&#8221;TextChange.TestAssociate&#8221; %&#62;</p>
<p>&#60;!DOCTYPE [...]]]></description>
		<wfw:commentRss>http://www.howtoasp.net/asp-net-tutorials-for-beginners/how-to-associate-a-label-with-a-textbox-or-other-form-control-in-asp-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to apply CSS style in the Label control from code-behind in ASP.NET in VB.NET</title>
		<link>http://www.howtoasp.net/vb-net-tutorials/how-to-apply-css-style-in-the-label-control-from-code-behind-in-asp-net-in-vb-net/</link>
		
		<pubDate>Sun, 23 Dec 2012 08:01:03 +0000</pubDate>
				<category><![CDATA[VB.NET Tutorials]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[asp.net 2.0]]></category>
		<category><![CDATA[asp.net 3.5]]></category>
		<category><![CDATA[asp.net 4.0]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false">http://www.howtoasp.net/?p=5244</guid>
		<description><![CDATA[<p>This ASP.NET tutorial explains how to apply CSS style in the Label control from code-behind in ASP.NET in VB.NET.</p>
<p> </p>
<p style="text-align: justify;">You can apply CSS style from code behind by accessing the properties of the control with the help of its Id. Most of the CSS styles can be applied using the Font property and its [...]]]></description>
		<wfw:commentRss>http://www.howtoasp.net/vb-net-tutorials/how-to-apply-css-style-in-the-label-control-from-code-behind-in-asp-net-in-vb-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to apply CSS style in the Label control from code-behind in ASP.NET in C#</title>
		<link>http://www.howtoasp.net/c-sharp-tutorials/how-to-apply-css-style-in-the-label-control-from-code-behind-in-asp-net-in-c/</link>
		
		<pubDate>Sun, 23 Dec 2012 07:56:24 +0000</pubDate>
				<category><![CDATA[C# Tutorials]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[asp.net 3.5]]></category>
		<category><![CDATA[asp.net 4.0]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.howtoasp.net/?p=5239</guid>
		<description><![CDATA[<p>This ASP.NET tutorial explains how to apply CSS style in the Label control from code-behind in ASP.NET in C#.</p>
<p> </p>
<p style="text-align: justify;">You can apply CSS style from code behind by accessing the properties of the control with the help of its Id. Most of the CSS styles can be applied using the Font property and its [...]]]></description>
		<wfw:commentRss>http://www.howtoasp.net/c-sharp-tutorials/how-to-apply-css-style-in-the-label-control-from-code-behind-in-asp-net-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change the text of the Label control from the code-behind in VB.NET</title>
		<link>http://www.howtoasp.net/vb-net-tutorials/how-to-change-the-text-of-the-label-control-from-the-code-behind-in-vb-net/</link>
		
		<pubDate>Sun, 23 Dec 2012 07:50:39 +0000</pubDate>
				<category><![CDATA[VB.NET Tutorials]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[asp.net 2.0]]></category>
		<category><![CDATA[asp.net 3.5]]></category>
		<category><![CDATA[asp.net 4.0]]></category>
		<category><![CDATA[vb.net]]></category>

		<guid isPermaLink="false">http://www.howtoasp.net/?p=5236</guid>
		<description><![CDATA[<p>This ASP.NET tutorial explains how to change the text of the Label control from the code-behind in VB.NET.</p>
<p> </p>
<p>TestPage (.aspx)</p>
<p>&#60;%@ Page Language=&#8221;vb&#8221; AutoEventWireup=&#8221;false&#8221; CodeBehind=&#8221;TestPage.aspx.vb&#8221; Inherits=&#8221;TestChange.TestPage&#8221; %&#62;</p>
<p>&#60;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&#62;</p>
<p>&#60;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&#62;</p>
<p>&#60;head runat=&#8221;server&#8221;&#62;</p>
<p style="padding-left: 30px;">&#60;title&#62;Change the text of the Label control from the code-behind&#60;/title&#62;</p>
<p>&#60;/head&#62;</p>
<p>&#60;body&#62;</p>
<p style="padding-left: 30px;">&#60;form id=&#8221;form1&#8243; runat=&#8221;server&#8221;&#62;</p>
<p style="padding-left: 60px;">&#60;div&#62;</p>
<p style="padding-left: 90px;">&#60;asp:Label ID=&#8221;LabelTest&#8221; runat=&#8221;server&#8221; [...]]]></description>
		<wfw:commentRss>http://www.howtoasp.net/vb-net-tutorials/how-to-change-the-text-of-the-label-control-from-the-code-behind-in-vb-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change the text of the Label control from the code-behind in C#</title>
		<link>http://www.howtoasp.net/c-sharp-tutorials/how-to-change-the-text-of-the-label-control-from-the-code-behind-in-c/</link>
		
		<pubDate>Sun, 23 Dec 2012 07:46:41 +0000</pubDate>
				<category><![CDATA[C# Tutorials]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[asp.net 2.0]]></category>
		<category><![CDATA[asp.net 3.5]]></category>
		<category><![CDATA[asp.net 4.0]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.howtoasp.net/?p=5233</guid>
		<description><![CDATA[<p>This ASP.NET tutorial explains how to change the text of the Label control from the code-behind in C#.</p>
<p>&#160;</p>
<p>TestPage (.aspx)</p>
<p>&#60;%@ Page Language=&#8221;C#&#8221; AutoEventWireup=&#8221;false&#8221; CodeBehind=&#8221;TestPage.aspx.cs&#8221; Inherits=&#8221;TestChange.TestPage&#8221; %&#62;</p>
<p>&#60;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&#62;</p>
<p>&#60;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&#62;</p>
<p>&#60;head runat=&#8221;server&#8221;&#62;</p>
<p>&#60;title&#62;Change the text of the Label control from the code-behind&#60;/title&#62;</p>
<p>&#60;/head&#62;</p>
<p>&#60;body&#62;</p>
<p style="padding-left: 30px;">&#60;form id=&#8221;form1&#8243; runat=&#8221;server&#8221;&#62;</p>
<p style="padding-left: 60px;">&#60;div&#62;</p>
<p style="padding-left: 90px;">&#60;asp:Label ID=&#8221;LabelTest&#8221; runat=&#8221;server&#8221; Text=&#8221;My test label&#8221;&#62;&#60;/asp:Label&#62;</p>
<p [...]]]></description>
		<wfw:commentRss>http://www.howtoasp.net/c-sharp-tutorials/how-to-change-the-text-of-the-label-control-from-the-code-behind-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
