<?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>MsDotNetMentor &#187; Asp.net</title>
	<atom:link href="http://www.msdotnetmentor.com/category/aspdotnet/feed" rel="self" type="application/rss+xml" />
	<link>http://www.msdotnetmentor.com</link>
	<description>Knowing Is Not Enough We Must Apply</description>
	<lastBuildDate>Mon, 09 Jan 2012 20:57:19 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Asp.net Security Vulnerability : quick workaround</title>
		<link>http://www.msdotnetmentor.com/aspdotnet/asp-net-vulnerability-quick-workaround.html</link>
		<comments>http://www.msdotnetmentor.com/aspdotnet/asp-net-vulnerability-quick-workaround.html#comments</comments>
		<pubDate>Sat, 18 Sep 2010 18:30:18 +0000</pubDate>
		<dc:creator>Gaurav Arora</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.msdotnetmentor.com/?p=774</guid>
		<description><![CDATA[Microsoft released Security Advisory : http://www.microsoft.com/technet/security/advisory/2416728.mspx, which tells about the Asp.net Security Vulnerability.
Due to this breach attackers can download important files like web.config etc.
There is a great need to work-around for it.
Refer to : http://weblogs.asp.net/scottgu/archive/2010/09/18/important-asp-net-security-vulnerability.aspx

/*  Tweet This Post

No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/aspdotnet/asp-net-vulnerability-quick-workaround.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online video on Using CSS and Javascript in TextBox</title>
		<link>http://www.msdotnetmentor.com/aspdotnet/online-video-on-using-css-and-javascript-in-textbox.html</link>
		<comments>http://www.msdotnetmentor.com/aspdotnet/online-video-on-using-css-and-javascript-in-textbox.html#comments</comments>
		<pubDate>Sun, 16 May 2010 19:34:54 +0000</pubDate>
		<dc:creator>Gaurav Arora</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[javascript css]]></category>
		<category><![CDATA[online video]]></category>

		<guid isPermaLink="false">http://www.msdotnetmentor.com/?p=767</guid>
		<description><![CDATA[
Jaipur Mentor
 Tweet This Post

No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/aspdotnet/online-video-on-using-css-and-javascript-in-textbox.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Online  Validaton Control video by Meetu Choudhary</title>
		<link>http://www.msdotnetmentor.com/aspdotnet/online-validaton-control-video-by-meetu-choudhary.html</link>
		<comments>http://www.msdotnetmentor.com/aspdotnet/online-validaton-control-video-by-meetu-choudhary.html#comments</comments>
		<pubDate>Mon, 12 Apr 2010 19:37:22 +0000</pubDate>
		<dc:creator>Gaurav Arora</dc:creator>
				<category><![CDATA[Asp.net]]></category>

		<guid isPermaLink="false">http://www.msdotnetmentor.com/?p=762</guid>
		<description><![CDATA[Jaipur Mentor :: validaton Contro
 Tweet This Post

No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/aspdotnet/online-validaton-control-video-by-meetu-choudhary.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use CSS and JavaScript in textbox in .aspx page</title>
		<link>http://www.msdotnetmentor.com/aspdotnet/use-css-and-javascript-in-textbox-in-aspx-page.html</link>
		<comments>http://www.msdotnetmentor.com/aspdotnet/use-css-and-javascript-in-textbox-in-aspx-page.html#comments</comments>
		<pubDate>Sat, 20 Mar 2010 09:34:49 +0000</pubDate>
		<dc:creator>Meetu Choudhary</dc:creator>
				<category><![CDATA[Asp.net]]></category>

		<guid isPermaLink="false">http://www.msdotnetmentor.com/?p=758</guid>
		<description><![CDATA[Use CSS and JavaScript in textbox in .aspx page.
 Create a project and add a new .aspx page and then in the aspx page add the following code in the head section.
&#60;style type=&#8221;text/css&#8221;&#62;
.uppercase
{
text-transform: uppercase;
}
.lowercase
{
text-transform: lowercase;
}
.capitalize
{
text-transform: capitalize;
}
&#60;/style&#62;
And then use the above classes in the code as
Typing Text in UPPERCASE
&#60;br /&#62;
&#60;asp:TextBox ID=&#8221;TextBox1&#8243; runat=&#8221;server&#8221; CssClass=&#8221;uppercase&#8221;&#62;&#60;/asp:TextBox&#62;&#60;br /&#62;
Typing Text in lowercase
&#60;br /&#62;
&#60;asp:TextBox ID=&#8221;TextBox3&#8243; runat=&#8221;server&#8221; CssClass=&#8221;lowercase&#8221;&#62;&#60;/asp:TextBox&#62;&#60;br /&#62;Typing Text in Capatlize
&#60;br /&#62;
&#60;asp:TextBox ID=&#8221;TextBox4&#8243; runat=&#8221;server&#8221; CssClass=&#8221;capitalize&#8221;&#62;&#60;/asp:TextBox&#62;
And then when you will type any text in these textboxes then they will appear as per the css class used.
And to use ...


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/aspdotnet/use-css-and-javascript-in-textbox-in-aspx-page.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Changing properties of textbox in visual studio 2010</title>
		<link>http://www.msdotnetmentor.com/aspdotnet/changing-properties-of-textbox-in-visual-studio-2010.html</link>
		<comments>http://www.msdotnetmentor.com/aspdotnet/changing-properties-of-textbox-in-visual-studio-2010.html#comments</comments>
		<pubDate>Thu, 11 Mar 2010 19:17:54 +0000</pubDate>
		<dc:creator>Meetu Choudhary</dc:creator>
				<category><![CDATA[Asp.net]]></category>
		<category><![CDATA[autopostback]]></category>
		<category><![CDATA[Meetu]]></category>
		<category><![CDATA[meetu choudhary]]></category>
		<category><![CDATA[meetuchoudhary]]></category>
		<category><![CDATA[textbox]]></category>
		<category><![CDATA[textbox events]]></category>
		<category><![CDATA[textbox properties]]></category>

		<guid isPermaLink="false">http://www.msdotnetmentor.com/?p=754</guid>
		<description><![CDATA[





  


Changing properties of textbox in visual studio 2010

To change the properties of the textbox at run time we need a textbox whose properties we will be changed and an event on which we can see the changes that we have made are applied so to solve the purpose of an event I have taken a command button or button whose click event will work for as the triggering event.

A Design view is shown here.





There are three controls:

And following changes are made to their properties.



Label1&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; 

&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; ID: lbl_Name

&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; Backcolor: ...


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://www.msdotnetmentor.com/aspdotnet/changing-properties-of-textbox-in-visual-studio-2010.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

