﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>博客园-Loving IT-最新评论</title><link>http://www.cnblogs.com/JeffYang/CommentsRSS.aspx</link><description>&lt;br /&gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Zero To Hero,  Good To Great ...</description><language>zh-cn</language><pubDate>Sun, 27 Jan 2008 13:21:50 GMT</pubDate><lastBuildDate>Sun, 27 Jan 2008 13:21:50 GMT</lastBuildDate><generator>cnblogs</generator><item><title>re: SkipLinkText会惹祸</title><link>http://www.cnblogs.com/JeffYang/archive/2007/12/23/1011869.html#1011881</link><dc:creator>Jeff Yang</dc:creator><author>Jeff Yang</author><pubDate>Sun, 23 Dec 2007 15:29:00 GMT</pubDate><guid>http://www.cnblogs.com/JeffYang/archive/2007/12/23/1011869.html#1011881</guid><description><![CDATA[ 想编辑一下，竟然出错，回复补充一下：<br>MSDN上明确说这个属性Default为空，但实际上不是，For more information, see LocalizableAttribute and ASP.NET Globalization and Localization.<br><br>Screen readers read the alternate text aloud, and the image occupies only one pixel space.<br><br>这里虽然说仅针对“屏幕阅读器”这种特殊设备才会出现1px，但PC上的IE6、IE7都会出现。<br><br><div align=right><a style="text-decoration:none;" href="http://JeffYang.cnblogs.com/" target="_blank">Jeff Yang</a> 2007-12-23 23:29 <a href="http://www.cnblogs.com/JeffYang/archive/2007/12/23/1011869.html#1011881#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Repeater中FooterTemplate中的控件提取</title><link>http://www.cnblogs.com/JeffYang/archive/2007/10/06/828724.html#915109</link><dc:creator>Jeff Yang</dc:creator><author>Jeff Yang</author><pubDate>Fri, 05 Oct 2007 23:36:00 GMT</pubDate><guid>http://www.cnblogs.com/JeffYang/archive/2007/10/06/828724.html#915109</guid><description><![CDATA[&lt;%@ Page Language=&quot;C#&quot; AutoEventWireup=&quot;true&quot; %&gt;<br><br>&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;<a href="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;" target="_new">http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;</a><br><br>&lt;html xmlns=&quot;<a href="http://www.w3.org/1999/xhtml&quot;" target="_new">http://www.w3.org/1999/xhtml&quot;</a> &gt;<br>&lt;head runat=&quot;server&quot;&gt;<br>    &lt;title&gt;Untitled Page&lt;/title&gt;<br>    &lt;script language=&quot;C#&quot; runat=&quot;server&quot;&gt;<br>       void Page_Load(Object Sender, EventArgs e) {<br>          if (!IsPostBack) {<br>             ArrayList values = new ArrayList();<br> <br>             values.Add(new PositionData(&quot;Microsoft&quot;, &quot;Msft&quot;));<br>             values.Add(new PositionData(&quot;Intel&quot;, &quot;Intc&quot;));<br>             values.Add(new PositionData(&quot;Dell&quot;, &quot;Dell&quot;));<br> <br>             Repeater1.DataSource = values;<br>             Repeater1.DataBind();<br>          }<br><br>          Response.Write(Repeater1.Controls.Count);<br>       }<br> <br>       public class PositionData {<br>         <br>          private string name;<br>          private string ticker;<br> <br>          public PositionData(string name, string ticker) {<br>             this.name = name;<br>             this.ticker = ticker;<br>          }<br> <br>          public string Name {<br>             get {<br>                return name;<br>             }<br>          }<br> <br>          public string Ticker {<br>             get {<br>                return ticker;<br>             }<br>          }<br>       }<br> <br>    &lt;/script&gt;<br><br>&lt;/head&gt;<br>&lt;body&gt;<br>    &lt;form id=&quot;form1&quot; runat=&quot;server&quot;&gt;<br>        &lt;asp:Repeater ID=&quot;Repeater1&quot; runat=&quot;server&quot;&gt;<br>        &lt;ItemTemplate&gt;<br>            &lt;asp:Label ID=&quot;Label1&quot; runat=&quot;server&quot; Text='&lt;%# Eval(&quot;name&quot;) %&gt;' ToolTip='&lt;%# Eval(&quot;ticker&quot;) %&gt;'&gt;&lt;/asp:Label&gt;<br>            &lt;br /&gt;<br>        &lt;/ItemTemplate&gt;<br>        &lt;FooterTemplate&gt;<br>            &lt;asp:CheckBox ID=&quot;CheckBox1&quot; runat=&quot;server&quot; Text=&quot;Footer&quot; ForeColor=&quot;red&quot; /&gt;<br>        &lt;/FooterTemplate&gt;<br>        &lt;/asp:Repeater&gt;<br>    &lt;/form&gt;<br>&lt;/body&gt;<br>&lt;/html&gt;<br><br><div align=right><a style="text-decoration:none;" href="http://JeffYang.cnblogs.com/" target="_blank">Jeff Yang</a> 2007-10-06 07:36 <a href="http://www.cnblogs.com/JeffYang/archive/2007/10/06/828724.html#915109#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Repeater中FooterTemplate中的控件提取</title><link>http://www.cnblogs.com/JeffYang/archive/2007/10/03/828724.html#913557</link><dc:creator>心海無涯</dc:creator><author>心海無涯</author><pubDate>Wed, 03 Oct 2007 12:13:00 GMT</pubDate><guid>http://www.cnblogs.com/JeffYang/archive/2007/10/03/828724.html#913557</guid><description><![CDATA[無法取得，能否貼一下代碼，<br>         HttpContext.Current.Response.Write(Repeater1.Controls.Count.ToString());結果為0；<br>其中<br>    &lt;FooterTemplate&gt;<br>        &lt;asp:CheckBox ID=&quot;CheckBox1&quot; runat=&quot;server&quot; /&gt;<br>請問是什麼原因?<br><br><br><br><div align=right><a style="text-decoration:none;" href="http://JeffYang.cnblogs.com/" target="_blank">心海無涯</a> 2007-10-03 20:13 <a href="http://www.cnblogs.com/JeffYang/archive/2007/10/03/828724.html#913557#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>