<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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>Comments for Christer V. Aas</title>
	<atom:link href="http://sercon.no/christer/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://sercon.no/christer</link>
	<description>The Web Experience: from technology to design</description>
	<lastBuildDate>Wed, 02 Dec 2009 20:12:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on World Index &#8211; my new project on Codeplex by Jochen Jesinghaus</title>
		<link>http://sercon.no/christer/2009/09/17/world-index-my-new-project-on-codeplex/comment-page-1/#comment-261</link>
		<dc:creator>Jochen Jesinghaus</dc:creator>
		<pubDate>Wed, 02 Dec 2009 20:12:45 +0000</pubDate>
		<guid isPermaLink="false">http://sercon.no/christer/?p=57#comment-261</guid>
		<description>Hi Christer,
Ambitious project. My own MDG Dashboard uses the UN database, so if you need advice on the translation, let me know - maybe I can help you.
Best,
Jochen</description>
		<content:encoded><![CDATA[<p>Hi Christer,<br />
Ambitious project. My own MDG Dashboard uses the UN database, so if you need advice on the translation, let me know &#8211; maybe I can help you.<br />
Best,<br />
Jochen</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS rollover buttons in ASP.net by adam</title>
		<link>http://sercon.no/christer/2008/07/31/css-rollover-buttons-in-aspnet/comment-page-1/#comment-253</link>
		<dc:creator>adam</dc:creator>
		<pubDate>Wed, 02 Sep 2009 07:00:19 +0000</pubDate>
		<guid isPermaLink="false">http://sercon.no/christer/2008/07/31/css-rollover-buttons-in-aspnet/#comment-253</guid>
		<description>css in asp.net?</description>
		<content:encoded><![CDATA[<p>css in asp.net?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 3W / Tripple &#8211; V as shortcut to URL&#8217;s by name</title>
		<link>http://sercon.no/christer/2009/01/15/3w-tripple-v-as-a-oral-shortcut-to-urls/comment-page-1/#comment-74</link>
		<dc:creator>name</dc:creator>
		<pubDate>Wed, 29 Jul 2009 11:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://sercon.no/christer/index.php/2009/01/15/3w-tripple-v-as-a-oral-shortcut-to-urls/#comment-74</guid>
		<description>Excellent site. It was pleasant to me.,</description>
		<content:encoded><![CDATA[<p>Excellent site. It was pleasant to me.,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS rollover buttons in ASP.net by Jon</title>
		<link>http://sercon.no/christer/2008/07/31/css-rollover-buttons-in-aspnet/comment-page-1/#comment-62</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Tue, 14 Jul 2009 04:33:44 +0000</pubDate>
		<guid isPermaLink="false">http://sercon.no/christer/2008/07/31/css-rollover-buttons-in-aspnet/#comment-62</guid>
		<description>I have 8 buttons side by side in a row across the page.  each button has a different 3rd color (as discussed above) for when it is depressed.  To make this clear
1 - when not hover or selected - light blue
2 - when hover but not selected - dark blue
3 - when selected - unige 3rd color - even if you hover over it, it must be this 3rd color which each button has a unique one.

I did not want to have 8 different images, one for the depresse state of each button.  I wanted to just change the backgrounds.

So, i created a transparent image and put that in as the src for each button. I also added image backgroudn color to the style like so
        .button img
        {
            width: 108px;
            height: 40px;
            border: 0;
            background-color: #48A6FE; 
            
        }


Now, with the clear image file, in the code behind using the click event for each button, I was able to set the background of the image to the appropriate 3rd color when clicked, and set the background of that button to the same 3rd color at the same time.  At this time, i also reset all the other buttons to their &#039;normal&#039; colors, light blue and dark blue as listed above.  

Also, i wanted to change the color of the text when hovered, so i added a style 

         .button a:hover span
        {
            color: White;
            
        }

Hope this helps someone!

Jon</description>
		<content:encoded><![CDATA[<p>I have 8 buttons side by side in a row across the page.  each button has a different 3rd color (as discussed above) for when it is depressed.  To make this clear<br />
1 &#8211; when not hover or selected &#8211; light blue<br />
2 &#8211; when hover but not selected &#8211; dark blue<br />
3 &#8211; when selected &#8211; unige 3rd color &#8211; even if you hover over it, it must be this 3rd color which each button has a unique one.</p>
<p>I did not want to have 8 different images, one for the depresse state of each button.  I wanted to just change the backgrounds.</p>
<p>So, i created a transparent image and put that in as the src for each button. I also added image backgroudn color to the style like so<br />
        .button img<br />
        {<br />
            width: 108px;<br />
            height: 40px;<br />
            border: 0;<br />
            background-color: #48A6FE; </p>
<p>        }</p>
<p>Now, with the clear image file, in the code behind using the click event for each button, I was able to set the background of the image to the appropriate 3rd color when clicked, and set the background of that button to the same 3rd color at the same time.  At this time, i also reset all the other buttons to their &#8216;normal&#8217; colors, light blue and dark blue as listed above.  </p>
<p>Also, i wanted to change the color of the text when hovered, so i added a style </p>
<p>         .button a:hover span<br />
        {<br />
            color: White;</p>
<p>        }</p>
<p>Hope this helps someone!</p>
<p>Jon</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS rollover buttons in ASP.net by Jon</title>
		<link>http://sercon.no/christer/2008/07/31/css-rollover-buttons-in-aspnet/comment-page-1/#comment-58</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Sat, 11 Jul 2009 05:36:59 +0000</pubDate>
		<guid isPermaLink="false">http://sercon.no/christer/2008/07/31/css-rollover-buttons-in-aspnet/#comment-58</guid>
		<description>Oh, that is bad, this wiki stripped out most of the line, it thought they were html tags.  I can&#039;t paste in here how the line looks, with the strange formatting.  I am replaceing the left and right brackets (for this example.
Replace $ with LT &amp; % with GT

btn_Event.Text = &quot;$img src=&quot; + &quot;&#039;&quot; + &quot;image/button_deactive.GIF&quot; + &quot;&#039;&quot; + &quot; /% $span%Events$/span%&quot;;

Perhaps the wiki will let this through now. 

Jon



Jon</description>
		<content:encoded><![CDATA[<p>Oh, that is bad, this wiki stripped out most of the line, it thought they were html tags.  I can&#8217;t paste in here how the line looks, with the strange formatting.  I am replaceing the left and right brackets (for this example.<br />
Replace $ with LT &amp; % with GT</p>
<p>btn_Event.Text = &#8220;$img src=&#8221; + &#8220;&#8216;&#8221; + &#8220;image/button_deactive.GIF&#8221; + &#8220;&#8216;&#8221; + &#8221; /% $span%Events$/span%&#8221;;</p>
<p>Perhaps the wiki will let this through now. </p>
<p>Jon</p>
<p>Jon</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS rollover buttons in ASP.net by Jon</title>
		<link>http://sercon.no/christer/2008/07/31/css-rollover-buttons-in-aspnet/comment-page-1/#comment-57</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Sat, 11 Jul 2009 05:30:13 +0000</pubDate>
		<guid isPermaLink="false">http://sercon.no/christer/2008/07/31/css-rollover-buttons-in-aspnet/#comment-57</guid>
		<description>Sorry to bug you.  I figured it out on my own.  It sseems that the img and span lines show up in the text property for the LinkButton.  So, if in the click event (in the code behind) you set the linkbutton text property to the string that includes the name of the image with the 3rd color.  Like this

btn_Event.Text = &quot; Events&quot;;

Obviously, i have changed the ids, and the text to dispaly, but you get the idea.  BTW, you have to be careful with the quotes.  If you do not have the little sequence -   + &quot;&#039;&quot; +  - like i have, it thinks it is a line of code and wants a couple of ; .  You have to concatenate this correctly.  (I was asked how to do this in VB once back in 95 on a job interview at Microsoft.  He gave me the book, and brought up the help screen then said he would be back in 15 or 20 minutes.  I told him to wait while i wrote it on the board.  He said most people could not concatenate the string properly and offered me the job!)

i want to figure out how to do this without images, just by setting backgroudn colors.  That way i do not an image for each button in it&#039;s &#039;depressed&quot; / &quot;selected&quot; state.

Good luck - let me know if you have a better way.

Jon</description>
		<content:encoded><![CDATA[<p>Sorry to bug you.  I figured it out on my own.  It sseems that the img and span lines show up in the text property for the LinkButton.  So, if in the click event (in the code behind) you set the linkbutton text property to the string that includes the name of the image with the 3rd color.  Like this</p>
<p>btn_Event.Text = &#8221; Events&#8221;;</p>
<p>Obviously, i have changed the ids, and the text to dispaly, but you get the idea.  BTW, you have to be careful with the quotes.  If you do not have the little sequence &#8211;   + &#8220;&#8216;&#8221; +  &#8211; like i have, it thinks it is a line of code and wants a couple of ; .  You have to concatenate this correctly.  (I was asked how to do this in VB once back in 95 on a job interview at Microsoft.  He gave me the book, and brought up the help screen then said he would be back in 15 or 20 minutes.  I told him to wait while i wrote it on the board.  He said most people could not concatenate the string properly and offered me the job!)</p>
<p>i want to figure out how to do this without images, just by setting backgroudn colors.  That way i do not an image for each button in it&#8217;s &#8216;depressed&#8221; / &#8220;selected&#8221; state.</p>
<p>Good luck &#8211; let me know if you have a better way.</p>
<p>Jon</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS rollover buttons in ASP.net by Jon</title>
		<link>http://sercon.no/christer/2008/07/31/css-rollover-buttons-in-aspnet/comment-page-1/#comment-56</link>
		<dc:creator>Jon</dc:creator>
		<pubDate>Sat, 11 Jul 2009 04:35:14 +0000</pubDate>
		<guid isPermaLink="false">http://sercon.no/christer/2008/07/31/css-rollover-buttons-in-aspnet/#comment-56</guid>
		<description>This is way cool, but I am struggling with how to get a 3rd color.  When it has been clicked, I would like to have it change colors, now to a 3rd color.  

I have made an image that is the desired 3rd color, but I cannot not figure out how to address the image src in the code behind.  In the btn_next_click event I tried setting the background color of the btn_next but that changed the color when I hovered over it.  I finally figured out why.  (a little slow) 

But, how do I change the image displayed.  I presume I need to do it in the same click event, but i cannot figure out how to address the image and set a new value for the src. It doesn&#039;t like btn_next.img.src = &quot;image/button_thirdColor&quot;.  It says it does not contain a definition for src.

Any help would be greatly appreciated.

Thanks
Jon</description>
		<content:encoded><![CDATA[<p>This is way cool, but I am struggling with how to get a 3rd color.  When it has been clicked, I would like to have it change colors, now to a 3rd color.  </p>
<p>I have made an image that is the desired 3rd color, but I cannot not figure out how to address the image src in the code behind.  In the btn_next_click event I tried setting the background color of the btn_next but that changed the color when I hovered over it.  I finally figured out why.  (a little slow) </p>
<p>But, how do I change the image displayed.  I presume I need to do it in the same click event, but i cannot figure out how to address the image and set a new value for the src. It doesn&#8217;t like btn_next.img.src = &#8220;image/button_thirdColor&#8221;.  It says it does not contain a definition for src.</p>
<p>Any help would be greatly appreciated.</p>
<p>Thanks<br />
Jon</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS rollover buttons in ASP.net by albert</title>
		<link>http://sercon.no/christer/2008/07/31/css-rollover-buttons-in-aspnet/comment-page-1/#comment-21</link>
		<dc:creator>albert</dc:creator>
		<pubDate>Wed, 01 Apr 2009 12:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://sercon.no/christer/2008/07/31/css-rollover-buttons-in-aspnet/#comment-21</guid>
		<description>Hi Christer V. Aas


Nice and good example for beginner

But explain me also how to apply this in Asp.Net side


       Thank You Christer V. Aas</description>
		<content:encoded><![CDATA[<p>Hi Christer V. Aas</p>
<p>Nice and good example for beginner</p>
<p>But explain me also how to apply this in Asp.Net side</p>
<p>       Thank You Christer V. Aas</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CSS rollover buttons in ASP.net by Harini</title>
		<link>http://sercon.no/christer/2008/07/31/css-rollover-buttons-in-aspnet/comment-page-1/#comment-20</link>
		<dc:creator>Harini</dc:creator>
		<pubDate>Wed, 01 Apr 2009 12:49:06 +0000</pubDate>
		<guid isPermaLink="false">http://sercon.no/christer/2008/07/31/css-rollover-buttons-in-aspnet/#comment-20</guid>
		<description>Very good article,But beginner no way to understand that,so please explain some important thing.For example
Well know CSS writer can understand,But beginner have doubt in how to use same class name(button) repeatedly,then it will be used in  ASP.NET designing page.


     But Really i said u done great work
Thanks you and keep continue</description>
		<content:encoded><![CDATA[<p>Very good article,But beginner no way to understand that,so please explain some important thing.For example<br />
Well know CSS writer can understand,But beginner have doubt in how to use same class name(button) repeatedly,then it will be used in  ASP.NET designing page.</p>
<p>     But Really i said u done great work<br />
Thanks you and keep continue</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Microsoft embraces jQuery by Jonas Follesø</title>
		<link>http://sercon.no/christer/2008/09/30/microsoft-embraces-jquery/comment-page-1/#comment-23</link>
		<dc:creator>Jonas Follesø</dc:creator>
		<pubDate>Mon, 20 Oct 2008 06:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://sercon.no/christer/2008/09/30/microsoft-embraces-jquery/#comment-23</guid>
		<description>Kult - Du må absolutt få sett litt på Expression Studio, WPF og Silverlight 2. Du får gi beskjed om det er noe du lurer på. Lider litt av Silverlight feber om dagen, så bruker MYE tid på det ;)

Er tilbake i Oslo 17. desember, og
skal ikke opp til Trondheim før nyttår. Så sees kanskje på kontoret i Oslo før jul.

Snakkes!</description>
		<content:encoded><![CDATA[<p>Kult &#8211; Du må absolutt få sett litt på Expression Studio, WPF og Silverlight 2. Du får gi beskjed om det er noe du lurer på. Lider litt av Silverlight feber om dagen, så bruker MYE tid på det <img src='http://sercon.no/christer/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Er tilbake i Oslo 17. desember, og<br />
skal ikke opp til Trondheim før nyttår. Så sees kanskje på kontoret i Oslo før jul.</p>
<p>Snakkes!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

