<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>

<channel>
	<title>Galhano 127.0.0.1</title>
	<atom:link href="http://www.galhano.com/blog/Index.php?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.galhano.com/blog</link>
	<description>Apontamentos sobre desenvolvimento web, software, networking e afins...</description>
	<pubDate>Tue, 07 Sep 2010 16:11:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ASP.NET 2.0 - Enter Key - Default Submit Button</title>
		<link>http://www.galhano.com/blog/?p=1074</link>
		<comments>http://www.galhano.com/blog/?p=1074#comments</comments>
		<pubDate>Tue, 07 Sep 2010 16:08:42 +0000</pubDate>
		<dc:creator>cgalhano</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[ASP.Net 2.0]]></category>

		<guid isPermaLink="false">http://www.galhano.com/blog/?p=1074</guid>
		<description><![CDATA[One of the most annoying things in developing web pages is handling the &#8220;Enter key&#8221; for form submission. Enter key has been the favourite way users like to submit forms. Though we provide Buttons to click on, the easiest and intuitive way is that, I can enter some text, make some changes and then hit [...]<br /> <br />
			http://flux.netaffiliation.com/xmltrack.php?maff=406041EAFB45F0497DAE2]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1074"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1074" height="61" width="51" /></a></div><p>One of the most annoying things in developing web pages is handling the &#8220;Enter key&#8221; for form submission. Enter key has been the favourite way users like to submit forms. Though we provide Buttons to click on, the easiest and intuitive way is that, I can enter some text, make some changes and then hit &#8220;Enter&#8221; to accomplish my submission.<br />
&#8220;Enter&#8221; Key is handled in a little tricky way by uplevel browsers like Internet Explorer, when it comes to ASP.NET.</p>
<p>* If there is a single Textbox and single button, then it becomes straight forward, the button is submitted. However, the event code doesnt get executed, though the page postsback.</p>
<p>* If there are two or more, buttons, then it takes up the first button as the default button. However, it still doesnt execute the event handler but just refreshes the page.</p>
<p>You can supress the Enter key event using Javascript. But this would result in other undesirable effects like, any Enter key in the form i.e. within Text Area or basically where large text is entered, would be disabled.</p>
<p>The earlier work around was to associate a javascript function to each Button to verify the that the relevant button is submitted upon Enter key.</p>
<p>ASP.NET 2.0 introduces a wonderful work around for this. By simply specifying the &#8220;defaultbutton&#8221; property to the ID of the &lt;asp:Button&gt;, whose event you want to fire, your job is done.</p>
<p>The defaultbutton property can be specified at the Form level in the form tag as well as at panel level in the &lt;asp:panel&gt; definition tag. The form level setting is overridden when specified at the panel level, for those controls that are inside the panel.<br />
<span id="more-1074"></span><br />
Also, the Event Handler for the specified button, fires thereby simulating a true submit button functionality.</p>
<p>The following sample code contains a form and 4 panels with each of them containing different buttons. It can be noticed that for each panel, there is a default button specified which would trigger the corresponding button&#8217;s event handler when &#8220;Enter&#8221; Key is pressed upon a text changed event.</p>
<div class="post-body">
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;form id=&#8221;form1&#8243; runat=&#8221;server&#8221; defaultbutton=&#8221;btn1&#8243;&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;div&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:TextBox ID=&#8221;txt&#8221; runat=&#8221;server&#8221;&gt;&lt;/asp:TextBox&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:Button ID=&#8221;Button5&#8243; runat=&#8221;server&#8221; Text=&#8221;Cancel&#8221; OnClick=&#8221;Button5_Click&#8221; /&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:Button ID=&#8221;btn1&#8243; runat=&#8221;server&#8221; Text=&#8221;Submit&#8221; OnClick=&#8221;btn1_Click&#8221; /&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:Panel ID=&#8221;pnl1&#8243; runat=&#8221;server&#8221; defaultbutton=&#8221;Button1&#8243;&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:TextBox ID=&#8221;TextBox1&#8243; runat=&#8221;server&#8221;&gt;&lt;/asp:TextBox&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:TextBox ID=&#8221;TextBox2&#8243; runat=&#8221;server&#8221;&gt;&lt;/asp:TextBox&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:Button ID=&#8221;Button1&#8243; runat=&#8221;server&#8221; Text=&#8221;Button1&#8243; OnClick=&#8221;Button1_Click&#8221; /&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;/asp:Panel&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:Panel ID=&#8221;Panel1&#8243; runat=&#8221;server&#8221; defaultbutton=&#8221;Button2&#8243;&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:TextBox ID=&#8221;TextBox3&#8243; runat=&#8221;server&#8221;&gt;&lt;/asp:TextBox&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:TextBox ID=&#8221;TextBox4&#8243; runat=&#8221;server&#8221;&gt;&lt;/asp:TextBox&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:Button ID=&#8221;Button2&#8243; runat=&#8221;server&#8221; Text=&#8221;Button2&#8243; OnClick=&#8221;Button2_Click&#8221; /&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;/asp:Panel&gt;</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><br />
<span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:Panel ID=&#8221;Panel2&#8243; runat=&#8221;server&#8221; defaultbutton=&#8221;Button3&#8243;&gt;</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><br />
</strong></span></em><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:TextBox ID=&#8221;TextBox5&#8243; runat=&#8221;server&#8221;&gt;&lt;/asp:TextBox&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:TextBox ID=&#8221;TextBox6&#8243; runat=&#8221;server&#8221;&gt;&lt;/asp:TextBox&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:Button ID=&#8221;Button3&#8243; runat=&#8221;server&#8221; Text=&#8221;Button3&#8243; OnClick=&#8221;Button3_Click&#8221; /&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;/asp:Panel&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:Panel ID=&#8221;Panel3&#8243; runat=&#8221;server&#8221; defaultbutton=&#8221;Button4&#8243;&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:TextBox ID=&#8221;TextBox7&#8243; runat=&#8221;server&#8221;&gt;&lt;/asp:TextBox&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:TextBox ID=&#8221;TextBox8&#8243; runat=&#8221;server&#8221;&gt;&lt;/asp:TextBox&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;asp:Button ID=&#8221;Button4&#8243; runat=&#8221;server&#8221; Text=&#8221;Button4&#8243; OnClick=&#8221;Button4_Click&#8221; /&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;/asp:Panel&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;/div&gt;<br />
</span></strong></span></em></p>
<p><em><span style="font-size: 85%;"><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">&lt;/form&gt;</span></strong></span></em></p>
<p><span style="font-size: 85%;"><span style="font-family: Tahoma;"><span style="font-size: x-small;"><span style="color: #000080;"><span style="font-size: 100%;">The corresponding, sample events for the button clicks are</span> </span></span></span></span></p>
<p><span style="font-size: 85%;"><br />
<em><strong><span style="font-family: Tahoma; color: #000080; font-size: x-small;">protected void Button1_Click(object sender, EventArgs e)<br />
{<br />
Response.Write(Button1.Text);<br />
}</span></strong></em></span></p>
<p><em><strong><br />
<span style="font-family: Tahoma; color: #000080; font-size: x-small;">protected void Button2_Click(object sender, EventArgs e)<br />
{<br />
Response.Write(Button2.Text);<br />
}</span><br />
<span style="font-family: Tahoma; color: #000080; font-size: x-small;">protected void Button3_Click(object sender, EventArgs e)<br />
{<br />
Response.Write(Button3.Text);<br />
}</span><br />
<span style="font-family: Tahoma; color: #000080; font-size: x-small;">protected void Button4_Click(object sender, EventArgs e)<br />
{<br />
Response.Write(Button4.Text);<br />
}</span><br />
<span style="font-family: Tahoma; color: #000080; font-size: x-small;">protected void btn1_Click(object sender, EventArgs e)<br />
{<br />
Response.Write(btn1.Text);<br />
}</span><br />
<span style="font-family: Tahoma; color: #000080; font-size: x-small;">protected void Button5_Click(object sender, EventArgs e)<br />
{<br />
Response.Write(Button5.Text);<br />
}</span></strong></em></p>
<p><span style="font-family: Tahoma; color: #000080; font-size: x-small;"><em><strong>Once we execute the  above functionality, we can notice, the corresponding Buttons&#8217; text are  displayed when the Enter key is pressed from within a panel and at the  form level, it fires the <strong>btn1 </strong>Button&#8217;s event.</strong></em></span></p>
<p><span style="font-family: Tahoma; color: #000080; font-size: x-small;"><em><strong>This would be a very  useful feature in scenarios where we have different sections of the page  and would like to have Enter key fire corresponding submit button  events.</strong></em></span></p>
<p><span style="font-family: Tahoma; color: #000080; font-size: x-small;"><em><strong>Cheers and Happy Enter Keying !!!</strong></em></span></p>
<p><span style="font-family: Tahoma; color: #000080; font-size: x-small;"><em><strong><br />
</strong></em></span></p>
<p><em><strong>Source link:</strong></em></p>
<p><span style="font-family: Tahoma; color: #000080; font-size: x-small;"><em><strong>http://geekswithblogs.net/ranganh/archive/2006/04/12/74951.aspx<br />
</strong></em></span></p>
<p><em><strong></strong></em></div>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.galhano.com/blog/?p=1074&title=ASP.NET+2.0+-+Enter+Key+-+Default+Submit+Button&srcURL=http://www.galhano.com/blog" target="_blank" rel="nofollow"><img
src="http://www.galhano.com/blog/wp-content/plugins/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://www.galhano.com/blog/?feed=rss2&amp;p=1074</wfw:commentRss>
		</item>
		<item>
		<title>List of Request.ServerVariables</title>
		<link>http://www.galhano.com/blog/?p=1071</link>
		<comments>http://www.galhano.com/blog/?p=1071#comments</comments>
		<pubDate>Mon, 12 Jul 2010 10:20:18 +0000</pubDate>
		<dc:creator>cgalhano</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[ASP.Net]]></category>

		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.galhano.com/blog/?p=1071</guid>
		<description><![CDATA[






ALL_HTTP
HTTP_CONNECTION:Keep-Alive HTTP_ACCEPT:*/* HTTP_ACCEPT_ENCODING:gzip, deflate HTTP_ACCEPT_LANGUAGE:sv HTTP_HOST:localhost:1229 HTTP_USER_AGENT:Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1) 


ALL_RAW
Connection: Keep-Alive Accept: */* Accept-Encoding: gzip, deflate Accept-Language: sv Host: localhost:1229 User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1) 


APPL_MD_PATH



APPL_PHYSICAL_PATH
D:\code\web\demos\membership\


AUTH_TYPE
NTLM


AUTH_USER
SYSTEMEN-D9AE02\Stefan Holmberg


AUTH_PASSWORD



LOGON_USER
SYSTEMEN-D9AE02\Stefan Holmberg


REMOTE_USER
SYSTEMEN-D9AE02\Stefan Holmberg


CERT_COOKIE



CERT_FLAGS



CERT_ISSUER



CERT_KEYSIZE



CERT_SECRETKEYSIZE



CERT_SERIALNUMBER



CERT_SERVER_ISSUER



CERT_SERVER_SUBJECT



CERT_SUBJECT



CONTENT_LENGTH
0


CONTENT_TYPE



GATEWAY_INTERFACE



HTTPS



HTTPS_KEYSIZE



HTTPS_SECRETKEYSIZE



HTTPS_SERVER_ISSUER



HTTPS_SERVER_SUBJECT



INSTANCE_ID



INSTANCE_META_PATH



LOCAL_ADDR
127.0.0.1


PATH_INFO
/membership/servervariables.aspx


PATH_TRANSLATED
D:\code\web\demos\membership\servervariables.aspx


QUERY_STRING



REMOTE_ADDR
127.0.0.1


REMOTE_HOST
127.0.0.1


REMOTE_PORT



REQUEST_METHOD
GET


SCRIPT_NAME
/membership/servervariables.aspx


SERVER_NAME
localhost


SERVER_PORT
1229


SERVER_PORT_SECURE
0


SERVER_PROTOCOL
HTTP/1.1


SERVER_SOFTWARE



URL
/membership/servervariables.aspx


HTTP_CONNECTION
Keep-Alive


HTTP_ACCEPT
*/*


HTTP_ACCEPT_ENCODING
gzip, deflate


HTTP_ACCEPT_LANGUAGE
sv


HTTP_HOST
localhost:1229


HTTP_USER_AGENT
Mozilla/4.0 (compatible; MSIE [...]<br /> <br />
			http://flux.netaffiliation.com/xmltrack.php?maff=406041EAFB45F0497DAE2]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1071"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1071" height="61" width="51" /></a></div><table id="GridView1" style="BORDER-COLLAPSE: collapse" border="1" cellspacing="1" rules="all">
<tbody>
<tr>
<th scope="col"></th>
<th scope="col"></th>
</tr>
<tr>
<td><span id="GridView1_ctl02_lblName">ALL_HTTP</span></td>
<td><span id="GridView1_ctl02_lblValue">HTTP_CONNECTION:Keep-Alive HTTP_ACCEPT:*/* HTTP_ACCEPT_ENCODING:gzip, deflate HTTP_ACCEPT_LANGUAGE:sv HTTP_HOST:localhost:1229 HTTP_USER_AGENT:Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1) </span></td>
</tr>
<tr>
<td><span id="GridView1_ctl03_lblName">ALL_RAW</span></td>
<td><span id="GridView1_ctl03_lblValue">Connection: Keep-Alive Accept: */* Accept-Encoding: gzip, deflate Accept-Language: sv Host: localhost:1229 User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1) </span></td>
</tr>
<tr>
<td><span id="GridView1_ctl04_lblName">APPL_MD_PATH</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl05_lblName">APPL_PHYSICAL_PATH</span></td>
<td><span id="GridView1_ctl05_lblValue">D:\code\web\demos\membership\</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl06_lblName">AUTH_TYPE</span></td>
<td><span id="GridView1_ctl06_lblValue">NTLM</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl07_lblName">AUTH_USER</span></td>
<td><span id="GridView1_ctl07_lblValue">SYSTEMEN-D9AE02\Stefan Holmberg</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl08_lblName">AUTH_PASSWORD</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl09_lblName">LOGON_USER</span></td>
<td><span id="GridView1_ctl09_lblValue">SYSTEMEN-D9AE02\Stefan Holmberg</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl10_lblName">REMOTE_USER</span></td>
<td><span id="GridView1_ctl10_lblValue">SYSTEMEN-D9AE02\Stefan Holmberg</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl11_lblName">CERT_COOKIE</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl12_lblName">CERT_FLAGS</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl13_lblName">CERT_ISSUER</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl14_lblName">CERT_KEYSIZE</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl15_lblName">CERT_SECRETKEYSIZE</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl16_lblName">CERT_SERIALNUMBER</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl17_lblName">CERT_SERVER_ISSUER</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl18_lblName">CERT_SERVER_SUBJECT</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl19_lblName">CERT_SUBJECT</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl20_lblName">CONTENT_LENGTH</span></td>
<td><span id="GridView1_ctl20_lblValue">0</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl21_lblName">CONTENT_TYPE</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl22_lblName">GATEWAY_INTERFACE</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl23_lblName">HTTPS</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl24_lblName">HTTPS_KEYSIZE</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl25_lblName">HTTPS_SECRETKEYSIZE</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl26_lblName">HTTPS_SERVER_ISSUER</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl27_lblName">HTTPS_SERVER_SUBJECT</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl28_lblName">INSTANCE_ID</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl29_lblName">INSTANCE_META_PATH</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl30_lblName">LOCAL_ADDR</span></td>
<td><span id="GridView1_ctl30_lblValue">127.0.0.1</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl31_lblName">PATH_INFO</span></td>
<td><span id="GridView1_ctl31_lblValue">/membership/servervariables.aspx</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl32_lblName">PATH_TRANSLATED</span></td>
<td><span id="GridView1_ctl32_lblValue">D:\code\web\demos\membership\servervariables.aspx</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl33_lblName">QUERY_STRING</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl34_lblName">REMOTE_ADDR</span></td>
<td><span id="GridView1_ctl34_lblValue">127.0.0.1</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl35_lblName">REMOTE_HOST</span></td>
<td><span id="GridView1_ctl35_lblValue">127.0.0.1</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl36_lblName">REMOTE_PORT</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl37_lblName">REQUEST_METHOD</span></td>
<td><span id="GridView1_ctl37_lblValue">GET</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl38_lblName">SCRIPT_NAME</span></td>
<td><span id="GridView1_ctl38_lblValue">/membership/servervariables.aspx</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl39_lblName">SERVER_NAME</span></td>
<td><span id="GridView1_ctl39_lblValue">localhost</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl40_lblName">SERVER_PORT</span></td>
<td><span id="GridView1_ctl40_lblValue">1229</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl41_lblName">SERVER_PORT_SECURE</span></td>
<td><span id="GridView1_ctl41_lblValue">0</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl42_lblName">SERVER_PROTOCOL</span></td>
<td><span id="GridView1_ctl42_lblValue">HTTP/1.1</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl43_lblName">SERVER_SOFTWARE</span></td>
<td></td>
</tr>
<tr>
<td><span id="GridView1_ctl44_lblName">URL</span></td>
<td><span id="GridView1_ctl44_lblValue">/membership/servervariables.aspx</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl45_lblName">HTTP_CONNECTION</span></td>
<td><span id="GridView1_ctl45_lblValue">Keep-Alive</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl46_lblName">HTTP_ACCEPT</span></td>
<td><span id="GridView1_ctl46_lblValue">*/*</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl47_lblName">HTTP_ACCEPT_ENCODING</span></td>
<td><span id="GridView1_ctl47_lblValue">gzip, deflate</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl48_lblName">HTTP_ACCEPT_LANGUAGE</span></td>
<td><span id="GridView1_ctl48_lblValue">sv</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl49_lblName">HTTP_HOST</span></td>
<td><span id="GridView1_ctl49_lblValue">localhost:1229</span></td>
</tr>
<tr>
<td><span id="GridView1_ctl50_lblName">HTTP_USER_AGENT</span></td>
<td><span id="GridView1_ctl50_lblValue">Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727; InfoPath.1)</span></td>
</tr>
</tbody>
</table>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.galhano.com/blog/?p=1071&title=List+of+Request.ServerVariables&srcURL=http://www.galhano.com/blog" target="_blank" rel="nofollow"><img
src="http://www.galhano.com/blog/wp-content/plugins/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://www.galhano.com/blog/?feed=rss2&amp;p=1071</wfw:commentRss>
		</item>
		<item>
		<title>Colors in ASP.NET</title>
		<link>http://www.galhano.com/blog/?p=1063</link>
		<comments>http://www.galhano.com/blog/?p=1063#comments</comments>
		<pubDate>Fri, 09 Jul 2010 14:27:29 +0000</pubDate>
		<dc:creator>cgalhano</dc:creator>
		
		<category><![CDATA[ASP.Net]]></category>

		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.galhano.com/blog/?p=1063</guid>
		<description><![CDATA[System.Drawing.Color



AliceBlue
Hex Code: #F0F8FF


AntiqueWhite
Hex Code: #FAEBD7


Aqua
Hex Code: #00FFFF


Aquamarine
Hex Code: #7FFFD4


Azure
Hex Code: #F0FFFF


Beige
Hex Code: #F5F5DC


Bisque
Hex Code: #FFE4C4


Black
Hex Code: #000000


BlanchedAlmond
Hex Code: #FFEBCD


Blue
Hex Code: #0000FF


BlueViolet
Hex Code: #8A2BE2


Brown
Hex Code: #A52A2A


BurlyWood
Hex Code: #DEB887


CadetBlue
Hex Code: #5F9EA0


Chartreuse
Hex Code: #7FFF00


Chocolate
Hex Code: #D2691E


Coral
Hex Code: #FF7F50


CornflowerBlue
Hex Code: #6495ED


Cornsilk
Hex Code: #FFF8DC


Crimson
Hex Code: #DC143C


Cyan
Hex Code: #00FFFF


DarkBlue
Hex Code: #00008B


DarkCyan
Hex Code: #008B8B


DarkGoldenrod
Hex Code: #B8860B


DarkGray
Hex Code: #A9A9A9


DarkGreen
Hex Code: #006400


DarkKhaki
Hex Code: #BDB76B


DarkMagenta
Hex [...]<br /> <br />
			http://flux.netaffiliation.com/xmltrack.php?maff=406041EAFB45F0497DAE2]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1063"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1063" height="61" width="51" /></a></div><p><strong>System.Drawing.Color</strong></p>
<table border="0">
<tbody>
<tr>
<td><strong>AliceBlue</strong></td>
<td style="background-color: AliceBlue; color: #717980" width="250"><strong>Hex Code:</strong> #F0F8FF</td>
</tr>
<tr>
<td><strong>AntiqueWhite</strong></td>
<td style="background-color: AntiqueWhite; color: #7B6C58" width="250"><strong>Hex Code:</strong> #FAEBD7</td>
</tr>
<tr>
<td><strong>Aqua</strong></td>
<td style="background-color: Aqua; color: #808080" width="250"><strong>Hex Code:</strong> #00FFFF</td>
</tr>
<tr>
<td><strong>Aquamarine</strong></td>
<td style="background-color: Aquamarine; color: #008055" width="250"><strong>Hex Code:</strong> #7FFFD4</td>
</tr>
<tr>
<td><strong>Azure</strong></td>
<td style="background-color: Azure; color: #718080" width="250"><strong>Hex Code:</strong> #F0FFFF</td>
</tr>
<tr>
<td><strong>Beige</strong></td>
<td style="background-color: Beige; color: #76765D" width="250"><strong>Hex Code:</strong> #F5F5DC</td>
</tr>
<tr>
<td><strong>Bisque</strong></td>
<td style="background-color: Bisque; color: #806545" width="250"><strong>Hex Code:</strong> #FFE4C4</td>
</tr>
<tr>
<td><strong>Black</strong></td>
<td style="background-color: Black; color: #808080" width="250"><strong>Hex Code:</strong> #000000</td>
</tr>
<tr>
<td><strong>BlanchedAlmond</strong></td>
<td style="background-color: BlanchedAlmond; color: #806C4E" width="250"><strong>Hex Code:</strong> #FFEBCD</td>
</tr>
<tr>
<td><strong>Blue</strong></td>
<td style="background-color: Blue; color: #808080" width="250"><strong>Hex Code:</strong> #0000FF</td>
</tr>
<tr>
<td><strong>BlueViolet</strong></td>
<td style="background-color: BlueViolet; color: #0BAB63" width="250"><strong>Hex Code:</strong> #8A2BE2</td>
</tr>
<tr>
<td><strong>Brown</strong></td>
<td style="background-color: Brown; color: #26AAAA" width="250"><strong>Hex Code:</strong> #A52A2A</td>
</tr>
<tr>
<td><strong>BurlyWood</strong></td>
<td style="background-color: BurlyWood; color: #5F3908" width="250"><strong>Hex Code:</strong> #DEB887</td>
</tr>
<tr>
<td><strong>CadetBlue</strong></td>
<td style="background-color: CadetBlue; color: #DF1F21" width="250"><strong>Hex Code:</strong> #5F9EA0</td>
</tr>
<tr>
<td><strong>Chartreuse</strong></td>
<td style="background-color: Chartreuse; color: #008080" width="250"><strong>Hex Code:</strong> #7FFF00</td>
</tr>
<tr>
<td><strong>Chocolate</strong></td>
<td style="background-color: Chocolate; color: #53E99E" width="250"><strong>Hex Code:</strong> #D2691E</td>
</tr>
<tr>
<td><strong>Coral</strong></td>
<td style="background-color: Coral; color: #8000D0" width="250"><strong>Hex Code:</strong> #FF7F50</td>
</tr>
<tr>
<td><strong>CornflowerBlue</strong></td>
<td style="background-color: CornflowerBlue; color: #E4166E" width="250"><strong>Hex Code:</strong> #6495ED</td>
</tr>
<tr>
<td><strong>Cornsilk</strong></td>
<td style="background-color: Cornsilk; color: #80795D" width="250"><strong>Hex Code:</strong> #FFF8DC</td>
</tr>
<tr>
<td><strong>Crimson</strong></td>
<td style="background-color: Crimson; color: #5D94BC" width="250"><strong>Hex Code:</strong> #DC143C</td>
</tr>
<tr>
<td><strong>Cyan</strong></td>
<td style="background-color: Cyan; color: #808080" width="250"><strong>Hex Code:</strong> #00FFFF</td>
</tr>
<tr>
<td><strong>DarkBlue</strong></td>
<td style="background-color: DarkBlue; color: #80800C" width="250"><strong>Hex Code:</strong> #00008B</td>
</tr>
<tr>
<td><strong>DarkCyan</strong></td>
<td style="background-color: DarkCyan; color: #800C0C" width="250"><strong>Hex Code:</strong> #008B8B</td>
</tr>
<tr>
<td><strong>DarkGoldenrod</strong></td>
<td style="background-color: DarkGoldenrod; color: #39078B" width="250"><strong>Hex Code:</strong> #B8860B</td>
</tr>
<tr>
<td><strong>DarkGray</strong></td>
<td style="background-color: DarkGray; color: #2A2A2A" width="250"><strong>Hex Code:</strong> #A9A9A9</td>
</tr>
<tr>
<td><strong>DarkGreen</strong></td>
<td style="background-color: DarkGreen; color: #80E480" width="250"><strong>Hex Code:</strong> #006400</td>
</tr>
<tr>
<td><strong>DarkKhaki</strong></td>
<td style="background-color: DarkKhaki; color: #3E38EB" width="250"><strong>Hex Code:</strong> #BDB76B</td>
</tr>
<tr>
<td><strong>DarkMagenta</strong></td>
<td style="background-color: DarkMagenta; color: #0C800C" width="250"><strong>Hex Code:</strong> #8B008B</td>
</tr>
<tr>
<td><strong>DarkOliveGreen</strong></td>
<td style="background-color: DarkOliveGreen; color: #D5EBAF" width="250"><strong>Hex Code:</strong> #556B2F</td>
</tr>
<tr>
<td><strong>DarkOrange</strong></td>
<td style="background-color: DarkOrange; color: #800D80" width="250"><strong>Hex Code:</strong> #FF8C00</td>
</tr>
<tr>
<td><strong>DarkOrchid</strong></td>
<td style="background-color: DarkOrchid; color: #1AB24D" width="250"><strong>Hex Code:</strong> #9932CC</td>
</tr>
<tr>
<td><strong>DarkRed</strong></td>
<td style="background-color: DarkRed; color: #0C8080" width="250"><strong>Hex Code:</strong> #8B0000</td>
</tr>
<tr>
<td><strong>DarkSalmon</strong></td>
<td style="background-color: DarkSalmon; color: #6A17FA" width="250"><strong>Hex Code:</strong> #E9967A</td>
</tr>
<tr>
<td><strong>DarkSeaGreen</strong></td>
<td style="background-color: DarkSeaGreen; color: #103D0C" width="250"><strong>Hex Code:</strong> #8FBC8B</td>
</tr>
<tr>
<td><strong>DarkSlateBlue</strong></td>
<td style="background-color: DarkSlateBlue; color: #C8BD0C" width="250"><strong>Hex Code:</strong> #483D8B</td>
</tr>
<tr>
<td><strong>DarkSlateGray</strong></td>
<td style="background-color: DarkSlateGray; color: #AFCFCF" width="250"><strong>Hex Code:</strong> #2F4F4F</td>
</tr>
<tr>
<td><strong>DarkTurquoise</strong></td>
<td style="background-color: DarkTurquoise; color: #804F52" width="250"><strong>Hex Code:</strong> #00CED1</td>
</tr>
<tr>
<td><strong>DarkViolet</strong></td>
<td style="background-color: DarkViolet; color: #158054" width="250"><strong>Hex Code:</strong> #9400D3</td>
</tr>
<tr>
<td><strong>DeepPink</strong></td>
<td style="background-color: DeepPink; color: #809414" width="250"><strong>Hex Code:</strong> #FF1493</td>
</tr>
<tr>
<td><strong>DeepSkyBlue</strong></td>
<td style="background-color: DeepSkyBlue; color: #804080" width="250"><strong>Hex Code:</strong> #00BFFF</td>
</tr>
<tr>
<td><strong>DimGray</strong></td>
<td style="background-color: DimGray; color: #E9E9E9" width="250"><strong>Hex Code:</strong> #696969</td>
</tr>
<tr>
<td><strong>DodgerBlue</strong></td>
<td style="background-color: DodgerBlue; color: #9E1180" width="250"><strong>Hex Code:</strong> #1E90FF</td>
</tr>
<tr>
<td><strong>Firebrick</strong></td>
<td style="background-color: Firebrick; color: #33A2A2" width="250"><strong>Hex Code:</strong> #B22222</td>
</tr>
<tr>
<td><strong>FloralWhite</strong></td>
<td style="background-color: FloralWhite; color: #807B71" width="250"><strong>Hex Code:</strong> #FFFAF0</td>
</tr>
<tr>
<td><strong>ForestGreen</strong></td>
<td style="background-color: ForestGreen; color: #A20CA2" width="250"><strong>Hex Code:</strong> #228B22</td>
</tr>
<tr>
<td><strong>Fuchsia</strong></td>
<td style="background-color: Fuchsia; color: #808080" width="250"><strong>Hex Code:</strong> #FF00FF</td>
</tr>
<tr>
<td><strong>Gainsboro</strong></td>
<td style="background-color: Gainsboro; color: #5D5D5D" width="250"><strong>Hex Code:</strong> #DCDCDC</td>
</tr>
<tr>
<td><strong>GhostWhite</strong></td>
<td style="background-color: GhostWhite; color: #797980" width="250"><strong>Hex Code:</strong> #F8F8FF</td>
</tr>
<tr>
<td><strong>Gold</strong></td>
<td style="background-color: Gold; color: #805880" width="250"><strong>Hex Code:</strong> #FFD700</td>
</tr>
<tr>
<td><strong>Goldenrod</strong></td>
<td style="background-color: Goldenrod; color: #5B26A0" width="250"><strong>Hex Code:</strong> #DAA520</td>
</tr>
<tr>
<td><strong>Gray</strong></td>
<td style="background-color: Gray; color: #010101" width="250"><strong>Hex Code:</strong> #808080</td>
</tr>
<tr>
<td><strong>Green</strong></td>
<td style="background-color: Green; color: #800180" width="250"><strong>Hex Code:</strong> #008000</td>
</tr>
<tr>
<td><strong>GreenYellow</strong></td>
<td style="background-color: GreenYellow; color: #2E80AF" width="250"><strong>Hex Code:</strong> #ADFF2F</td>
</tr>
<tr>
<td><strong>Honeydew</strong></td>
<td style="background-color: Honeydew; color: #718071" width="250"><strong>Hex Code:</strong> #F0FFF0</td>
</tr>
<tr>
<td><strong>HotPink</strong></td>
<td style="background-color: HotPink; color: #80E935" width="250"><strong>Hex Code:</strong> #FF69B4</td>
</tr>
<tr>
<td><strong>IndianRed</strong></td>
<td style="background-color: IndianRed; color: #4EDCDC" width="250"><strong>Hex Code:</strong> #CD5C5C</td>
</tr>
<tr>
<td><strong>Indigo</strong></td>
<td style="background-color: Indigo; color: #CB8003" width="250"><strong>Hex Code:</strong> #4B0082</td>
</tr>
<tr>
<td><strong>Ivory</strong></td>
<td style="background-color: Ivory; color: #808071" width="250"><strong>Hex Code:</strong> #FFFFF0</td>
</tr>
<tr>
<td><strong>Khaki</strong></td>
<td style="background-color: Khaki; color: #71670D" width="250"><strong>Hex Code:</strong> #F0E68C</td>
</tr>
<tr>
<td><strong>Lavender</strong></td>
<td style="background-color: Lavender; color: #67677B" width="250"><strong>Hex Code:</strong> #E6E6FA</td>
</tr>
<tr>
<td><strong>LavenderBlush</strong></td>
<td style="background-color: LavenderBlush; color: #807176" width="250"><strong>Hex Code:</strong> #FFF0F5</td>
</tr>
<tr>
<td><strong>LawnGreen</strong></td>
<td style="background-color: LawnGreen; color: #FC7D80" width="250"><strong>Hex Code:</strong> #7CFC00</td>
</tr>
<tr>
<td><strong>LemonChiffon</strong></td>
<td style="background-color: LemonChiffon; color: #807B4E" width="250"><strong>Hex Code:</strong> #FFFACD</td>
</tr>
<tr>
<td><strong>LightBlue</strong></td>
<td style="background-color: LightBlue; color: #2E5967" width="250"><strong>Hex Code:</strong> #ADD8E6</td>
</tr>
<tr>
<td><strong>LightCoral</strong></td>
<td style="background-color: LightCoral; color: #710101" width="250"><strong>Hex Code:</strong> #F08080</td>
</tr>
<tr>
<td><strong>LightCyan</strong></td>
<td style="background-color: LightCyan; color: #618080" width="250"><strong>Hex Code:</strong> #E0FFFF</td>
</tr>
<tr>
<td><strong>LightGoldenrodYellow</strong></td>
<td style="background-color: LightGoldenrodYellow; color: #7B7B53" width="250"><strong>Hex Code:</strong> #FAFAD2</td>
</tr>
<tr>
<td><strong>LightGray</strong></td>
<td style="background-color: LightGray; color: #545454" width="250"><strong>Hex Code:</strong> #D3D3D3</td>
</tr>
<tr>
<td><strong>LightGreen</strong></td>
<td style="background-color: LightGreen; color: #116F11" width="250"><strong>Hex Code:</strong> #90EE90</td>
</tr>
<tr>
<td><strong>LightPink</strong></td>
<td style="background-color: LightPink; color: #803742" width="250"><strong>Hex Code:</strong> #FFB6C1</td>
</tr>
<tr>
<td><strong>LightSalmon</strong></td>
<td style="background-color: LightSalmon; color: #8021FA" width="250"><strong>Hex Code:</strong> #FFA07A</td>
</tr>
<tr>
<td><strong>LightSeaGreen</strong></td>
<td style="background-color: LightSeaGreen; color: #A0332B" width="250"><strong>Hex Code:</strong> #20B2AA</td>
</tr>
<tr>
<td><strong>LightSkyBlue</strong></td>
<td style="background-color: LightSkyBlue; color: #084F7B" width="250"><strong>Hex Code:</strong> #87CEFA</td>
</tr>
<tr>
<td><strong>LightSlateGray</strong></td>
<td style="background-color: LightSlateGray; color: #F7091A" width="250"><strong>Hex Code:</strong> #778899</td>
</tr>
<tr>
<td><strong>LightSteelBlue</strong></td>
<td style="background-color: LightSteelBlue; color: #31455F" width="250"><strong>Hex Code:</strong> #B0C4DE</td>
</tr>
<tr>
<td><strong>LightYellow</strong></td>
<td style="background-color: LightYellow; color: #808061" width="250"><strong>Hex Code:</strong> #FFFFE0</td>
</tr>
<tr>
<td><strong>Lime</strong></td>
<td style="background-color: Lime; color: #808080" width="250"><strong>Hex Code:</strong> #00FF00</td>
</tr>
<tr>
<td><strong>LimeGreen</strong></td>
<td style="background-color: LimeGreen; color: #B24EB2" width="250"><strong>Hex Code:</strong> #32CD32</td>
</tr>
<tr>
<td><strong>Linen</strong></td>
<td style="background-color: Linen; color: #7B7167" width="250"><strong>Hex Code:</strong> #FAF0E6</td>
</tr>
<tr>
<td><strong>Magenta</strong></td>
<td style="background-color: Magenta; color: #808080" width="250"><strong>Hex Code:</strong> #FF00FF</td>
</tr>
<tr>
<td><strong>Maroon</strong></td>
<td style="background-color: Maroon; color: #018080" width="250"><strong>Hex Code:</strong> #800000</td>
</tr>
<tr>
<td><strong>MediumAquamarine</strong></td>
<td style="background-color: MediumAquamarine; color: #E64E2B" width="250"><strong>Hex Code:</strong> #66CDAA</td>
</tr>
<tr>
<td><strong>MediumBlue</strong></td>
<td style="background-color: MediumBlue; color: #80804E" width="250"><strong>Hex Code:</strong> #0000CD</td>
</tr>
<tr>
<td><strong>MediumOrchid</strong></td>
<td style="background-color: MediumOrchid; color: #3BD554" width="250"><strong>Hex Code:</strong> #BA55D3</td>
</tr>
<tr>
<td><strong>MediumPurple</strong></td>
<td style="background-color: MediumPurple; color: #14F05C" width="250"><strong>Hex Code:</strong> #9370DB</td>
</tr>
<tr>
<td><strong>MediumSeaGreen</strong></td>
<td style="background-color: MediumSeaGreen; color: #BC34F1" width="250"><strong>Hex Code:</strong> #3CB371</td>
</tr>
<tr>
<td><strong>MediumSlateBlue</strong></td>
<td style="background-color: MediumSlateBlue; color: #FBE86F" width="250"><strong>Hex Code:</strong> #7B68EE</td>
</tr>
<tr>
<td><strong>MediumSpringGreen</strong></td>
<td style="background-color: MediumSpringGreen; color: #807B1B" width="250"><strong>Hex Code:</strong> #00FA9A</td>
</tr>
<tr>
<td><strong>MediumTurquoise</strong></td>
<td style="background-color: MediumTurquoise; color: #C8524D" width="250"><strong>Hex Code:</strong> #48D1CC</td>
</tr>
<tr>
<td><strong>MediumVioletRed</strong></td>
<td style="background-color: MediumVioletRed; color: #489506" width="250"><strong>Hex Code:</strong> #C71585</td>
</tr>
<tr>
<td><strong>MidnightBlue</strong></td>
<td style="background-color: MidnightBlue; color: #9999F0" width="250"><strong>Hex Code:</strong> #191970</td>
</tr>
<tr>
<td><strong>MintCream</strong></td>
<td style="background-color: MintCream; color: #76807B" width="250"><strong>Hex Code:</strong> #F5FFFA</td>
</tr>
<tr>
<td><strong>MistyRose</strong></td>
<td style="background-color: MistyRose; color: #806562" width="250"><strong>Hex Code:</strong> #FFE4E1</td>
</tr>
<tr>
<td><strong>Moccasin</strong></td>
<td style="background-color: Moccasin; color: #806536" width="250"><strong>Hex Code:</strong> #FFE4B5</td>
</tr>
<tr>
<td><strong>NavajoWhite</strong></td>
<td style="background-color: NavajoWhite; color: #805F2E" width="250"><strong>Hex Code:</strong> #FFDEAD</td>
</tr>
<tr>
<td><strong>Navy</strong></td>
<td style="background-color: Navy; color: #808001" width="250"><strong>Hex Code:</strong> #000080</td>
</tr>
<tr>
<td><strong>OldLace</strong></td>
<td style="background-color: OldLace; color: #7E7667" width="250"><strong>Hex Code:</strong> #FDF5E6</td>
</tr>
<tr>
<td><strong>Olive</strong></td>
<td style="background-color: Olive; color: #010180" width="250"><strong>Hex Code:</strong> #808000</td>
</tr>
<tr>
<td><strong>OliveDrab</strong></td>
<td style="background-color: OliveDrab; color: #EB0FA3" width="250"><strong>Hex Code:</strong> #6B8E23</td>
</tr>
<tr>
<td><strong>Orange</strong></td>
<td style="background-color: Orange; color: #802680" width="250"><strong>Hex Code:</strong> #FFA500</td>
</tr>
<tr>
<td><strong>OrangeRed</strong></td>
<td style="background-color: OrangeRed; color: #80C580" width="250"><strong>Hex Code:</strong> #FF4500</td>
</tr>
<tr>
<td><strong>Orchid</strong></td>
<td style="background-color: Orchid; color: #5BF057" width="250"><strong>Hex Code:</strong> #DA70D6</td>
</tr>
<tr>
<td><strong>PaleGoldenrod</strong></td>
<td style="background-color: PaleGoldenrod; color: #6F692B" width="250"><strong>Hex Code:</strong> #EEE8AA</td>
</tr>
<tr>
<td><strong>PaleGreen</strong></td>
<td style="background-color: PaleGreen; color: #197C19" width="250"><strong>Hex Code:</strong> #98FB98</td>
</tr>
<tr>
<td><strong>PaleTurquoise</strong></td>
<td style="background-color: PaleTurquoise; color: #306F6F" width="250"><strong>Hex Code:</strong> #AFEEEE</td>
</tr>
<tr>
<td><strong>PaleVioletRed</strong></td>
<td style="background-color: PaleVioletRed; color: #5CF014" width="250"><strong>Hex Code:</strong> #DB7093</td>
</tr>
<tr>
<td><strong>PapayaWhip</strong></td>
<td style="background-color: PapayaWhip; color: #807056" width="250"><strong>Hex Code:</strong> #FFEFD5</td>
</tr>
<tr>
<td><strong>PeachPuff</strong></td>
<td style="background-color: PeachPuff; color: #805B3A" width="250"><strong>Hex Code:</strong> #FFDAB9</td>
</tr>
<tr>
<td><strong>Peru</strong></td>
<td style="background-color: Peru; color: #4E06BF" width="250"><strong>Hex Code:</strong> #CD853F</td>
</tr>
<tr>
<td><strong>Pink</strong></td>
<td style="background-color: Pink; color: #80414C" width="250"><strong>Hex Code:</strong> #FFC0CB</td>
</tr>
<tr>
<td><strong>Plum</strong></td>
<td style="background-color: Plum; color: #5E215E" width="250"><strong>Hex Code:</strong> #DDA0DD</td>
</tr>
<tr>
<td><strong>PowderBlue</strong></td>
<td style="background-color: PowderBlue; color: #316167" width="250"><strong>Hex Code:</strong> #B0E0E6</td>
</tr>
<tr>
<td><strong>Purple</strong></td>
<td style="background-color: Purple; color: #018001" width="250"><strong>Hex Code:</strong> #800080</td>
</tr>
<tr>
<td><strong>Red</strong></td>
<td style="background-color: Red; color: #808080" width="250"><strong>Hex Code:</strong> #FF0000</td>
</tr>
<tr>
<td><strong>RosyBrown</strong></td>
<td style="background-color: RosyBrown; color: #3D1010" width="250"><strong>Hex Code:</strong> #BC8F8F</td>
</tr>
<tr>
<td><strong>RoyalBlue</strong></td>
<td style="background-color: RoyalBlue; color: #C1E962" width="250"><strong>Hex Code:</strong> #4169E1</td>
</tr>
<tr>
<td><strong>SaddleBrown</strong></td>
<td style="background-color: SaddleBrown; color: #0CC593" width="250"><strong>Hex Code:</strong> #8B4513</td>
</tr>
<tr>
<td><strong>Salmon</strong></td>
<td style="background-color: Salmon; color: #7B01F2" width="250"><strong>Hex Code:</strong> #FA8072</td>
</tr>
<tr>
<td><strong>SandyBrown</strong></td>
<td style="background-color: SandyBrown; color: #7525E0" width="250"><strong>Hex Code:</strong> #F4A460</td>
</tr>
<tr>
<td><strong>SeaGreen</strong></td>
<td style="background-color: SeaGreen; color: #AE0CD7" width="250"><strong>Hex Code:</strong> #2E8B57</td>
</tr>
<tr>
<td><strong>SeaShell</strong></td>
<td style="background-color: SeaShell; color: #80766F" width="250"><strong>Hex Code:</strong> #FFF5EE</td>
</tr>
<tr>
<td><strong>Sienna</strong></td>
<td style="background-color: Sienna; color: #21D2AD" width="250"><strong>Hex Code:</strong> #A0522D</td>
</tr>
<tr>
<td><strong>Silver</strong></td>
<td style="background-color: Silver; color: #414141" width="250"><strong>Hex Code:</strong> #C0C0C0</td>
</tr>
<tr>
<td><strong>SkyBlue</strong></td>
<td style="background-color: SkyBlue; color: #084F6C" width="250"><strong>Hex Code:</strong> #87CEEB</td>
</tr>
<tr>
<td><strong>SlateBlue</strong></td>
<td style="background-color: SlateBlue; color: #EADA4E" width="250"><strong>Hex Code:</strong> #6A5ACD</td>
</tr>
<tr>
<td><strong>SlateGray</strong></td>
<td style="background-color: SlateGray; color: #F00111" width="250"><strong>Hex Code:</strong> #708090</td>
</tr>
<tr>
<td><strong>Snow</strong></td>
<td style="background-color: Snow; color: #807B7B" width="250"><strong>Hex Code:</strong> #FFFAFA</td>
</tr>
<tr>
<td><strong>SpringGreen</strong></td>
<td style="background-color: SpringGreen; color: #808000" width="250"><strong>Hex Code:</strong> #00FF7F</td>
</tr>
<tr>
<td><strong>SteelBlue</strong></td>
<td style="background-color: SteelBlue; color: #C60335" width="250"><strong>Hex Code:</strong> #4682B4</td>
</tr>
<tr>
<td><strong>Tan</strong></td>
<td style="background-color: Tan; color: #53350D" width="250"><strong>Hex Code:</strong> #D2B48C</td>
</tr>
<tr>
<td><strong>Teal</strong></td>
<td style="background-color: Teal; color: #800101" width="250"><strong>Hex Code:</strong> #008080</td>
</tr>
<tr>
<td><strong>Thistle</strong></td>
<td style="background-color: Thistle; color: #594059" width="250"><strong>Hex Code:</strong> #D8BFD8</td>
</tr>
<tr>
<td><strong>Tomato</strong></td>
<td style="background-color: Tomato; color: #80E3C7" width="250"><strong>Hex Code:</strong> #FF6347</td>
</tr>
<tr>
<td><strong>Transparent</strong></td>
<td style="background-color: Transparent; color: #808080" width="250"><strong>Hex Code:</strong> #FFFFFF</td>
</tr>
<tr>
<td><strong>Turquoise</strong></td>
<td style="background-color: Turquoise; color: #C06151" width="250"><strong>Hex Code:</strong> #40E0D0</td>
</tr>
<tr>
<td><strong>Violet</strong></td>
<td style="background-color: Violet; color: #6F036F" width="250"><strong>Hex Code:</strong> #EE82EE</td>
</tr>
<tr>
<td><strong>Wheat</strong></td>
<td style="background-color: Wheat; color: #765F34" width="250"><strong>Hex Code:</strong> #F5DEB3</td>
</tr>
<tr>
<td><strong>White</strong></td>
<td style="background-color: White; color: #808080" width="250"><strong>Hex Code:</strong> #FFFFFF</td>
</tr>
<tr>
<td><strong>WhiteSmoke</strong></td>
<td style="background-color: WhiteSmoke; color: #767676" width="250"><strong>Hex Code:</strong> #F5F5F5</td>
</tr>
<tr>
<td><strong>Yellow</strong></td>
<td style="background-color: Yellow; color: #808080" width="250"><strong>Hex Code:</strong> #FFFF00</td>
</tr>
<tr>
<td><strong>YellowGreen</strong></td>
<td style="background-color: YellowGreen; color: #1B4EB2" width="250"><strong>Hex Code:</strong> #9ACD32</td>
</tr>
</tbody>
</table>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.galhano.com/blog/?p=1063&title=Colors+in+ASP.NET&srcURL=http://www.galhano.com/blog" target="_blank" rel="nofollow"><img
src="http://www.galhano.com/blog/wp-content/plugins/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://www.galhano.com/blog/?feed=rss2&amp;p=1063</wfw:commentRss>
		</item>
		<item>
		<title>Custom paging nav on GridView control</title>
		<link>http://www.galhano.com/blog/?p=1060</link>
		<comments>http://www.galhano.com/blog/?p=1060#comments</comments>
		<pubDate>Fri, 25 Jun 2010 10:35:41 +0000</pubDate>
		<dc:creator>cgalhano</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[ASP.Net]]></category>

		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.galhano.com/blog/?p=1060</guid>
		<description><![CDATA[&#60;PagerTemplate&#62;
      &#60;asp:LinkButton CommandName="Page" CommandArgument="First"
        ID="LinkButton1" runat="server" Style="color: white"&#62;
        &#38;lt;&#38;lt;First&#60;/asp:LinkButton&#62;
      &#60;asp:LinkButton CommandName="Page" CommandArgument="Prev"
        ID="LinkButton2" runat="server" Style="color: white"&#62;
        &#38;lt; [...]<br /> <br />
			http://flux.netaffiliation.com/xmltrack.php?maff=406041EAFB45F0497DAE2]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1060"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1060" height="61" width="51" /></a></div><pre><code>&lt;PagerTemplate&gt;
      &lt;asp:LinkButton CommandName="Page" CommandArgument="First"
        ID="LinkButton1" runat="server" Style="color: white"&gt;
        &amp;lt;&amp;lt;First&lt;/asp:LinkButton&gt;
      &lt;asp:LinkButton CommandName="Page" CommandArgument="Prev"
        ID="LinkButton2" runat="server" Style="color: white"&gt;
        &amp;lt; Prev&lt;/asp:LinkButton&gt;
      [Records &lt;%= GridView1.PageIndex * GridView1.PageSize %&gt;
        - &lt;%= GridView1.PageIndex * GridView1.PageSize +
           GridView1.PageSize - 1 %&gt;]
      &lt;asp:LinkButton CommandName="Page" CommandArgument="Next"
        ID="LinkButton3" runat="server" Style="color: white"&gt;
        Next &amp;gt;&lt;/asp:LinkButton&gt;
      &lt;asp:LinkButton CommandName="Page" CommandArgument="Last"
       ID="LinkButton4" runat="server" Style="color: white"&gt;
        Last &amp;gt;&amp;gt;&lt;/asp:LinkButton&gt;
&lt;/PagerTemplate&gt;</code></pre>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.galhano.com/blog/?p=1060&title=Custom+paging+nav+on+GridView+control&srcURL=http://www.galhano.com/blog" target="_blank" rel="nofollow"><img
src="http://www.galhano.com/blog/wp-content/plugins/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://www.galhano.com/blog/?feed=rss2&amp;p=1060</wfw:commentRss>
		</item>
		<item>
		<title>Paradígmas digital - novos ditados populares</title>
		<link>http://www.galhano.com/blog/?p=1057</link>
		<comments>http://www.galhano.com/blog/?p=1057#comments</comments>
		<pubDate>Fri, 28 May 2010 11:45:35 +0000</pubDate>
		<dc:creator>cgalhano</dc:creator>
		
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://www.galhano.com/blog/?p=1057</guid>
		<description><![CDATA[Como estamos na &#8216;Era Digital&#8217;, foi necessário rever os velhos ditados  existentes e adaptá-los à nova  realidade.
Vejam alguns:
1. A pressa é inimiga da conexão.
2. Amigos, amigos, senhas à   parte.
3. Antes só, do que em chats aborrecidos.
4. A  arquivo dado não se olha o formato.
5. Diga-me que chat  freqüentas e [...]<br /> <br />
			http://flux.netaffiliation.com/xmltrack.php?maff=406041EAFB45F0497DAE2]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1057"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1057" height="61" width="51" /></a></div><p>Como estamos na &#8216;Era Digital&#8217;, foi necessário rever os velhos ditados  existentes e adaptá-los à nova  realidade.</p>
<p>Vejam alguns:<br />
1. A pressa é inimiga da conexão.<br />
2. Amigos, amigos, senhas à   parte.<br />
3. Antes só, do que em chats aborrecidos.<br />
4. A  arquivo dado não se olha o formato.<br />
5. Diga-me que chat  freqüentas e te direi quem és.<br />
6. Para bom provedor uma senha  basta.<br />
7. Não adianta chorar sobre arquivo deletado.<br />
8.  Em briga de namorados virtuais não se mete o mouse.<br />
9. Em terra  off-line, quem tem um 486 é rei.<br />
10. Hacker que ladra, não  morde.<br />
11. Mais vale um arquivo no HD do que dois baixando.<br />
12. Mouse sujo se limpa em casa.<br />
13. Melhor prevenir do que  formatar.<br />
14. O barato sai caro. E  lento.<br />
15. Quando a  esmola é demais, o santo desconfia que tem vírus anexado.<br />
16.  Quando um não quer, dois não  teclam.<br />
17. Quem ama um 486,  Pentium 5 lhe parece.<br />
18. Quem clica seus males multiplica.<br />
19. Quem com vírus infecta, com vírus será infectado.<br />
20.  Quem envia o que quer, recebe o que não quer.<br />
21. Quem não tem  banda larga, caça com modem.<br />
22. Quem nunca errou, que aperte a  primeira tecla.<br />
23. Quem semeia e-mails, colhe spams.<br />
24. Quem tem dedo vai a  Roma.com<br />
25. Um é pouco, dois é bom,  três é chat ou lista virtual.<br />
26. Vão-se os arquivos, ficam os   back-ups.<br />
27. Diga-me que computador tens e direi quem és.<br />
28. Há dois tipos de pessoas na informática. Os que perderam o HD e  os que ainda vão perder&#8230;<br />
29. Uma impressora disse para outra:  Essa folha é sua ou é impressão minha.<br />
30. Aluno de informática  não cola, faz backup.<br />
31. O problema do computador é o USB  (Usuário Super Burro)&#8230;<br />
32. Na informática nada se perde, nada  se cria. Tudo se copia&#8230; e depois se cola.</p>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.galhano.com/blog/?p=1057&title=Paradígmas+digital+-+novos+ditados+populares&srcURL=http://www.galhano.com/blog" target="_blank" rel="nofollow"><img
src="http://www.galhano.com/blog/wp-content/plugins/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://www.galhano.com/blog/?feed=rss2&amp;p=1057</wfw:commentRss>
		</item>
		<item>
		<title>Erro ao abrir Outlook 2003/2007</title>
		<link>http://www.galhano.com/blog/?p=1055</link>
		<comments>http://www.galhano.com/blog/?p=1055#comments</comments>
		<pubDate>Fri, 28 May 2010 11:39:08 +0000</pubDate>
		<dc:creator>cgalhano</dc:creator>
		
		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Outlook]]></category>

		<guid isPermaLink="false">http://www.galhano.com/blog/?p=1055</guid>
		<description><![CDATA[&#8220;Não é possível iniciar o microsoft office outlook. Não é possível abrir a janela do Outlook.&#8221;
Erro ao abrir o Outlook 2007 (Não é possivel abrir a janela do outlook)
Hoje depois de um reboot ao PC não estava a conseguir abri o Outlook.
Após alguma pesquisa e debug, lá encontrei a solução: “Limpar e gerar novamente o [...]<br /> <br />
			http://flux.netaffiliation.com/xmltrack.php?maff=406041EAFB45F0497DAE2]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1055"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1055" height="61" width="51" /></a></div><p><strong>&#8220;Não é possível iniciar o microsoft office outlook. Não é possível abrir a janela do Outlook.&#8221;</strong></p>
<p>Erro ao abrir o Outlook 2007 (Não é possivel abrir a janela do outlook)<br />
Hoje depois de um reboot ao PC não estava a conseguir abri o Outlook.</p>
<p>Após alguma pesquisa e debug, lá encontrei a solução: “Limpar e gerar novamente o painel de navegação do perfil actual.”</p>
<p>Para isso basta ir ao “Menu Iniciar”, escolher a opção “Executar” e escrever o comando <span style="color: #ff0000;"><strong>outlook  /resetnavpane</strong></span></p>
<p>Outros comandos que podem ser úteis para o Outlook:<br />
http://office.microsoft.com/pt-pt/outlook/HP010031102070.aspx<br />
http://www.mundibrasil.org/news/atualizacao-pode-causar-pane-no-outlook-saiba-como-resolver.html</p>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.galhano.com/blog/?p=1055&title=Erro+ao+abrir+Outlook+2003/2007&srcURL=http://www.galhano.com/blog" target="_blank" rel="nofollow"><img
src="http://www.galhano.com/blog/wp-content/plugins/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://www.galhano.com/blog/?feed=rss2&amp;p=1055</wfw:commentRss>
		</item>
		<item>
		<title>Error &#8220;The report server database is an invalid version&#8221;</title>
		<link>http://www.galhano.com/blog/?p=1053</link>
		<comments>http://www.galhano.com/blog/?p=1053#comments</comments>
		<pubDate>Thu, 27 May 2010 11:40:04 +0000</pubDate>
		<dc:creator>cgalhano</dc:creator>
		
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.galhano.com/blog/?p=1053</guid>
		<description><![CDATA[
Source: Report Server Windows
Event ID: 117
Description: The report server database is an invalid version.

Reporting Services Configuration Manager

Open up the &#8220;Reporting Services Configuration Manager&#8221; by going to Start -&#62; Programs -&#62;Microsoft SQL Server 2005 -&#62; Configuration Tools -&#62; Reporting Services Configuration.
On the left hand side, click on &#8220;Database Setup&#8221;. (there should be a red &#8220;x&#8221; to [...]<br /> <br />
			http://flux.netaffiliation.com/xmltrack.php?maff=406041EAFB45F0497DAE2]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1053"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1053" height="61" width="51" /></a></div><div class="content clear-block">
<pre class="code"><span style="color: #000000;">Source: Report Server Windows
Event ID: 117
Description: The report server database is an invalid version.
</span></pre>
<p>Reporting Services Configuration Manager</p>
<ol>
<li>Open up the &#8220;Reporting Services Configuration Manager&#8221; by going to Start -&gt; Programs -&gt;Microsoft SQL Server 2005 -&gt; Configuration Tools -&gt; Reporting Services Configuration.</li>
<li>On the left hand side, click on &#8220;Database Setup&#8221;. (there should be a red &#8220;x&#8221; to the left of Database Setup.</li>
<li>Choose the appropriate Server Name.</li>
<li>For the Database Name, click &#8220;New&#8221; and do not use the default name &#8220;ReportServer&#8221; since it&#8217;s possible a .MDF file was already created with this name. I used &#8220;ReportServer2&#8243;.</li>
<li>Make sure to choose the &#8220;Credentials Type&#8221; and enter the account information for a user who has create database permissions.</li>
<li>Click &#8220;Upgrade&#8221;. Make sure you get all green check marks (even a warning message means the process probably didn&#8217;t complete properly).</li>
<li>Click &#8220;Apply&#8221; at the bottom.</li>
</ol>
</div>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.galhano.com/blog/?p=1053&title=Error+&#8220;The+report+server+database+is+an+invalid+version&#8221;&srcURL=http://www.galhano.com/blog" target="_blank" rel="nofollow"><img
src="http://www.galhano.com/blog/wp-content/plugins/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://www.galhano.com/blog/?feed=rss2&amp;p=1053</wfw:commentRss>
		</item>
		<item>
		<title>A WMI error has occurred and no additional error information is available</title>
		<link>http://www.galhano.com/blog/?p=1049</link>
		<comments>http://www.galhano.com/blog/?p=1049#comments</comments>
		<pubDate>Wed, 26 May 2010 15:04:12 +0000</pubDate>
		<dc:creator>cgalhano</dc:creator>
		
		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.galhano.com/blog/?p=1049</guid>
		<description><![CDATA[This can happen when you have different versions installed. For example, if you install SQL Server 2005 SP3 and later, and only then install the Reporting Services.
In this situation it should be rerun after the SP3 installation of Reporting Services
<br /> <br />
			http://flux.netaffiliation.com/xmltrack.php?maff=406041EAFB45F0497DAE2]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1049"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1049" height="61" width="51" /></a></div><p>This can happen when you have different versions installed. For example, if you install SQL Server 2005 SP3 and later, and only then install the Reporting Services.</p>
<p>In this situation it should be rerun after the SP3 installation of Reporting Services</p>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.galhano.com/blog/?p=1049&title=A+WMI+error+has+occurred+and+no+additional+error+information+is+available&srcURL=http://www.galhano.com/blog" target="_blank" rel="nofollow"><img
src="http://www.galhano.com/blog/wp-content/plugins/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://www.galhano.com/blog/?feed=rss2&amp;p=1049</wfw:commentRss>
		</item>
		<item>
		<title>Installing GPMC on Windows Server 2008 and Windows Vista Service Pack 1</title>
		<link>http://www.galhano.com/blog/?p=1046</link>
		<comments>http://www.galhano.com/blog/?p=1046#comments</comments>
		<pubDate>Wed, 26 May 2010 13:29:14 +0000</pubDate>
		<dc:creator>cgalhano</dc:creator>
		
		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.galhano.com/blog/?p=1046</guid>
		<description><![CDATA[The Group Policy Management Console is included in Windows Server  2008; however, you must install it before you can use it. The domain  controller promotion process installs GPMC on the server, in addition to  adding the domain controller to the domain. Additionally, you can  install GPMC on a member server as [...]<br /> <br />
			http://flux.netaffiliation.com/xmltrack.php?maff=406041EAFB45F0497DAE2]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1046"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1046" height="61" width="51" /></a></div><p>The Group Policy Management Console is included in Windows Server  2008; however, you must install it before you can use it. The domain  controller promotion process installs GPMC on the server, in addition to  adding the domain controller to the domain. Additionally, you can  install GPMC on a member server as long as it’s a member of the domain.  Let’s look at two ways to install GPMC on Windows Server 2008 (other  than through DCPROMO).</p>
<h4><span style="color: #000080;">Installing GPMC using Server Manager (Windows  Server 2008)</span></h4>
<p>The Group Policy Management Console is a Feature in Windows Server  2008. You install Features using Server Manager. Once installed, you can  access the feature using Server Manager or you can the specific  management console (like gpmc.msc).</p>
<p><span id="more-1046"></span></p>
<ol>
<li>Open <strong>Server Manager</strong> by click <strong>Start</strong> and then point to <strong>Administrative Tools</strong>. Click <strong>Server  Manager</strong></li>
<li>Click <strong>Features</strong> in the console tree. In the Features  pane, click Add Features</li>
<li>Select <strong>Group Policy Management</strong> from the list of  available features in the <strong>Add Feature</strong> Wizard. Click <strong>Install</strong>.</li>
<li>Start using <strong>GPMC</strong> or close <strong>Server Manager</strong>.</li>
</ol>
<p>There’s another way to install GPMC using Server Manager, which  usually installs quicker that using the Server Manager user interface.  Server Manager includes a command line utility for installing Features  and Roles named ServerManagercmd.exe.</p>
<h4><span style="color: #000080;">Installing GPMC from the Command Line</span></h4>
<ol>
<li>Open an elevated command prompt.</li>
<li>In the command prompt, type <strong><em>ServerManagercmd –install  gpmc</em></strong></li>
<li>Start <strong>GPMC</strong> from the command prompt by typing <strong><em>start  gpmc.msc</em></strong></li>
<li>Close the command prompt.</li>
</ol>
<h4><span style="color: #000080;">Installing GPMC on Windows Vista Service Pack 1</span></h4>
<p>Installing GPMC on Windows Vista Service Pack 1 can be a little  confusing. First, you must download the Remote Server Administration  Tools for Windows Vista Service Pack 1 before you can install GPMC. You  may remember that GPMC was included in Windows Vista RTM; however  Service Pack 1 removes it. After installing RSAT, you then want to  install GPMC. Installing RSAT simply includes the Remote Server  Administration tools on the Windows Vista SP1 computer but does not  deploy for use—you’ll want to choose which RSAT tools you want used on  the computer.</p>
<ol>
<li>Download and install the <strong>Remote Server Administration Tools</strong> (<a href="http://go.microsoft.com/fwlink.?LinkID=95703).">http://go.microsoft.com/fwlink.?LinkID=95703).</a></li>
<li>After the installation is complete, then click <strong>Start</strong>,  click <strong>Control Panel</strong>, and then click <strong>Programs</strong>.</li>
<li>Click <strong>Turn Windows Features on or off</strong> from <strong>Programs  and Features</strong>.</li>
<li><strong>Click Remote Server Administration Tools</strong> and then  click <strong>Feature Administration Tools</strong> from the <strong>Windows  Features</strong> dialog box.</li>
<li>Click <strong>Group Policy Management Tools</strong> and click <strong>OK</strong> to complete the installation.</li>
</ol>
<p>You’ll now see Group Policy Management included under the list of  Administrative Tools (On Vista, you may need to actually show the  Administrative Tools on the start menu – this can be done through <strong>Control  Panel</strong> –&gt; <strong>Taskbar and Start Menu</strong> –&gt; <strong>Start  Menu</strong> –&gt; <strong>Customize</strong> –&gt; <strong>System  Administrative Tools</strong>). You can also start GPMC from the command  line or run/search menu by typing <strong><em>gpmc.msc.</em></strong></p>
<p><strong><em>Source:  <a href="http://blogs.technet.com/b/askds/archive/2008/07/07/installing-gpmc-on-windows-server-2008-and-windows-vista-service-pack-1.aspx" target="_blank">blogs.technet.com </a><br />
</em></strong></p>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.galhano.com/blog/?p=1046&title=Installing+GPMC+on+Windows+Server+2008+and+Windows+Vista+Service+Pack+1&srcURL=http://www.galhano.com/blog" target="_blank" rel="nofollow"><img
src="http://www.galhano.com/blog/wp-content/plugins/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://www.galhano.com/blog/?feed=rss2&amp;p=1046</wfw:commentRss>
		</item>
		<item>
		<title>Free Currency Converter</title>
		<link>http://www.galhano.com/blog/?p=1043</link>
		<comments>http://www.galhano.com/blog/?p=1043#comments</comments>
		<pubDate>Tue, 04 May 2010 20:05:45 +0000</pubDate>
		<dc:creator>cgalhano</dc:creator>
		
		<category><![CDATA[Utils]]></category>

		<guid isPermaLink="false">http://www.galhano.com/blog/?p=1043</guid>
		<description><![CDATA[Free Currency Converter available in http://www.galhano.com/web/Services/?Action=CC
<br /> <br />
			http://flux.netaffiliation.com/xmltrack.php?maff=406041EAFB45F0497DAE2]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;"><a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1043"><img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.galhano.com%2Fblog%2F%3Fp%3D1043" height="61" width="51" /></a></div><p>Free Currency Converter available in <a href="http://www.galhano.com/web/Services/?Action=CC" target="_blank">http://www.galhano.com/web/Services/?Action=CC</a></p>
<a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.galhano.com/blog/?p=1043&title=Free+Currency+Converter&srcURL=http://www.galhano.com/blog" target="_blank" rel="nofollow"><img
src="http://www.galhano.com/blog/wp-content/plugins/images/google-buzz.png" alt="Google Buzz" /></a>]]></content:encoded>
			<wfw:commentRss>http://www.galhano.com/blog/?feed=rss2&amp;p=1043</wfw:commentRss>
		</item>
	</channel>
</rss>
