??xml version="1.0" encoding="utf-8" standalone="yes"?>久久在线电影,色婷婷久久久久swag精品,亚洲精品黑牛一区二区三区http://www.aygfsteel.com/pear/category/12088.htmlzh-cnTue, 27 Feb 2007 17:48:00 GMTTue, 27 Feb 2007 17:48:00 GMT60伤心太^z,左连接和内联的区?/title><link>http://www.aygfsteel.com/pear/archive/2006/12/14/87812.html</link><dc:creator>pear</dc:creator><author>pear</author><pubDate>Thu, 14 Dec 2006 12:47:00 GMT</pubDate><guid>http://www.aygfsteel.com/pear/archive/2006/12/14/87812.html</guid><wfw:comment>http://www.aygfsteel.com/pear/comments/87812.html</wfw:comment><comments>http://www.aygfsteel.com/pear/archive/2006/12/14/87812.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/pear/comments/commentRss/87812.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/pear/services/trackbacks/87812.html</trackback:ping><description><![CDATA[ <dl> <dt class="indent">INNER </dt> <dd class="level2">指定q回所有相匚w的行寏V废弃两个表中不匚w的行。如果未指定联接cdQ则q是默认讄?br /></dd> <dt class="indent">LEFT [OUTER] </dt> <dd class="level2">指定除所有由内联接返回的行外Q所有来自左表的不符合指定条件的行也包含在结果集内。来自左表的输出列设|ؓ NULL?br /></dd> <dt class="indent">RIGHT [OUTER] </dt> <dd class="level2">指定除所有由内联接返回的行外Q所有来自右表的不符合指定条件的行也包含在结果集内。来自右表的输出列设|ؓ NULL?br /></dd> <dt class="indent">FULL [OUTER] </dt> <dd class="level2">如果来自左表或右表的某行与选择准则不匹配,则指定在l果集内包含该行Qƈ且将与另一个表对应的输出列讄?NULL。除此之外,l果集中q包含通常由内联接q回的所有行?br /></dd> <dt class="indent"><join_hint> </dt> <dd class="level2">指定联接提示或执行算法。如果指定了 <join_hint>Q也必须明确指定 INNER、LEFT、RIGHT ?FULL。有兌接提C的更多信息Q请参见 <a href="mk:@MSITStore:C:\Program%20Files\Microsoft%20SQL%20Server\80\Tools\Books\tsqlref.chm::/ts_fa-fz_4ox9.htm">FROM</a>?br /></dd> <dt class="indent">JOIN </dt> <dd class="level2">表示联接所指定的表或视图?</dd> </dl> <img src ="http://www.aygfsteel.com/pear/aggbug/87812.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/pear/" target="_blank">pear</a> 2006-12-14 20:47 <a href="http://www.aygfsteel.com/pear/archive/2006/12/14/87812.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>重新学习 Hibernate fetch lazy cascade inverse 关键?http://www.aygfsteel.com/pear/archive/2006/11/05/79251.htmlpearpearSun, 05 Nov 2006 12:04:00 GMThttp://www.aygfsteel.com/pear/archive/2006/11/05/79251.htmlhttp://www.aygfsteel.com/pear/comments/79251.htmlhttp://www.aygfsteel.com/pear/archive/2006/11/05/79251.html#Feedback0http://www.aygfsteel.com/pear/comments/commentRss/79251.htmlhttp://www.aygfsteel.com/pear/services/trackbacks/79251.htmlHibernate最让h头大的就是对集合的加载Ş式?br />书看了Nơ了Q还是没有真正理解Hibernate。所以下午专门做了下试Q对配置文g的意思加׃认识?br />
假设有两个表QPhotos(一Q?---  picture(多)Photo包含picture集合

l论1Q?HQL代码 > fetchQ配|) > lazy Q配|)
l论2Q?默认 lazy="true"
l论3Q?fetch ?lazy 主要是用来联查询的Q ??cascade ?inverse 主要是用来联插入和修改?br />l论4Q?如果你是用spring来帮你管理你的session, q且是自动提交,延迟加蝲q于没加蝲~_~(当然
                除非你手动重新打开session然后手动Hibernate.initialize(set);然后关闭session.
l论5:     cascade主要是简化了在代码中的联更新和删除?br />jl论6Q老爸可以有多个孩子,一个孩子不能有多个老爸Q而且老爸说的? 孩子围着老爸转?br />               所以Photos老爸要有权力所?cascade q个关键子都是送给老爸的, 也就是联更斎ͼ
               老爸改姓了,儿子也得跟着改,呵呵。“不Ӟ没有零花钱咯”?br />                而Picture儿子整体挨骂Q但是还是要l护父子之间良好的关p,对老爸百依NQ所
               以老爸pQ儿子,“关p,׃来维护(inverse="true") Q不然就不给零花钱。呵。”?br />               <set name="pictures" inverse="true" cascade="all">
                    <key>
                       <column name="photosid" not-null="true" />
                    </key>
                 <one-to-many class="girl.domain.Picture" />
             </set>
               
试代码Q?br />
   Photos p = ps.getById(1);
  Set<Picture> set = p.getPictures();
  for(Picture pic : set){
     System.out.println(pic.getId());
  }

  配置文g的一部分Q?br />       <set name="pictures" inverse="true" cascade="all" >
            <key>
                <column name="photosid" not-null="true" />
            </key>
            <one-to-many class="girl.domain.Picture" />
        </set>

试q程会对配置文g不断修改Qƈ且从来不曾手动重新打开session

试l构Q?br />
当配|条件ؓ lazy=true 一句查?试代码中没有调用getPicture()  正常
Hibernate: select photos0_.id as id0_0_, photos0_.userid as userid0_0_, photos0_.typeid as typeid0_0_, photos0_.name as name0_0_, photos0_.createtime as createtime0_0_, photos0_.description as descript6_0_0_, photos0_.faceid as faceid0_0_, photos0_.uri as uri0_0_ from super.photos photos0_ where photos0_.id=?

lazy=true 一句查?有getPicture()
Hibernate: select photos0_.id as id0_0_, photos0_.userid as userid0_0_, photos0_.typeid as typeid0_0_, photos0_.name as name0_0_, photos0_.createtime as createtime0_0_, photos0_.description as descript6_0_0_, photos0_.faceid as faceid0_0_, photos0_.uri as uri0_0_ from super.photos photos0_ where photos0_.id=?


lazy=true 一句查询?有getPicture() q且讉K了里面的元数Picture 且有异常抛出
Hibernate: select photos0_.id as id0_0_, photos0_.userid as userid0_0_, photos0_.typeid as typeid0_0_, photos0_.name as name0_0_, photos0_.createtime as createtime0_0_, photos0_.description as descript6_0_0_, photos0_.faceid as faceid0_0_, photos0_.uri as uri0_0_ from super.photos photos0_ where photos0_.id=?


lazy="false" 两句查询  肯定没问题,因ؓ全部数据都个查了出来 所以怎么调用都正?br />Hibernate: select photos0_.id as id0_0_, photos0_.userid as userid0_0_, photos0_.typeid as typeid0_0_, photos0_.name as name0_0_, photos0_.createtime as createtime0_0_, photos0_.description as descript6_0_0_, photos0_.faceid as faceid0_0_, photos0_.uri as uri0_0_ from super.photos photos0_ where photos0_.id=?
Hibernate: select pictures0_.photosid as photosid1_, pictures0_.id as id1_, pictures0_.id as id2_0_, pictures0_.photosid as photosid2_0_, pictures0_.name as name2_0_, pictures0_.clicked as clicked2_0_, pictures0_.uploaddate as uploaddate2_0_, pictures0_.size as size2_0_, pictures0_.description as descript7_2_0_, pictures0_.uri as uri2_0_ from super.picture pictures0_ where pictures0_.photosid=?


fetch="join"  一句查询?效果 Q= lazy="false" 呵呵Q哪个效率高Q我׃知道了。。。。。。。。。。?br />Hibernate: select photos0_.id as id0_1_, photos0_.userid as userid0_1_, photos0_.typeid as typeid0_1_, photos0_.name as name0_1_, photos0_.createtime as createtime0_1_, photos0_.description as descript6_0_1_, photos0_.faceid as faceid0_1_, photos0_.uri as uri0_1_, pictures1_.photosid as photosid3_, pictures1_.id as id3_, pictures1_.id as id2_0_, pictures1_.photosid as photosid2_0_, pictures1_.name as name2_0_, pictures1_.clicked as clicked2_0_, pictures1_.uploaddate as uploaddate2_0_, pictures1_.size as size2_0_, pictures1_.description as descript7_2_0_, pictures1_.uri as uri2_0_ from super.photos photos0_ left outer join super.picture pictures1_ on photos0_.id=pictures1_.photosid where photos0_.id=?

不加fetchQ?join" 一句查询?没有getPicture() 正常
Hibernate: select photos0_.id as id0_0_, photos0_.userid as userid0_0_, photos0_.typeid as typeid0_0_, photos0_.name as name0_0_, photos0_.createtime as createtime0_0_, photos0_.description as descript6_0_0_, photos0_.faceid as faceid0_0_, photos0_.uri as uri0_0_ from super.photos photos0_ where photos0_.id=?

不加fetchQ?join" 一句查询?有getPicture() 正常
Hibernate: select photos0_.id as id0_0_, photos0_.userid as userid0_0_, photos0_.typeid as typeid0_0_, photos0_.name as name0_0_, photos0_.createtime as createtime0_0_, photos0_.description as descript6_0_0_, photos0_.faceid as faceid0_0_, photos0_.uri as uri0_0_ from super.photos photos0_ where photos0_.id=?

不加fetchQ?join" 一句查?有getPicture() q且讉K里面的元素Picture的ID 有异常抛?br />Hibernate: select photos0_.id as id0_0_, photos0_.userid as userid0_0_, photos0_.typeid as typeid0_0_, photos0_.name as name0_0_, photos0_.createtime as createtime0_0_, photos0_.description as descript6_0_0_, photos0_.faceid as faceid0_0_, photos0_.uri as uri0_0_ from super.photos photos0_ where photos0_.id=?

来个两兵交战 fetch="join" lazy="true"  呵呵 l果Q一句查询, l构正常 所以就当lazy不存在好了?看来fetch 是老大。、、、、、、、、、、、、?br />Hibernate: select photos0_.id as id0_1_, photos0_.userid as userid0_1_, photos0_.typeid as typeid0_1_, photos0_.name as name0_1_, photos0_.createtime as createtime0_1_, photos0_.description as descript6_0_1_, photos0_.faceid as faceid0_1_, photos0_.uri as uri0_1_, pictures1_.photosid as photosid3_, pictures1_.id as id3_, pictures1_.id as id2_0_, pictures1_.photosid as photosid2_0_, pictures1_.name as name2_0_, pictures1_.clicked as clicked2_0_, pictures1_.uploaddate as uploaddate2_0_, pictures1_.size as size2_0_, pictures1_.description as descript7_2_0_, pictures1_.uri as uri2_0_ from super.photos photos0_ left outer join super.picture pictures1_ on photos0_.id=pictures1_.photosid where photos0_.id=?



pear 2006-11-05 20:04 发表评论
]]>
js 天气预报Q蒙了我好久?/title><link>http://www.aygfsteel.com/pear/archive/2006/11/03/78939.html</link><dc:creator>pear</dc:creator><author>pear</author><pubDate>Fri, 03 Nov 2006 08:07:00 GMT</pubDate><guid>http://www.aygfsteel.com/pear/archive/2006/11/03/78939.html</guid><wfw:comment>http://www.aygfsteel.com/pear/comments/78939.html</wfw:comment><comments>http://www.aygfsteel.com/pear/archive/2006/11/03/78939.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/pear/comments/commentRss/78939.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/pear/services/trackbacks/78939.html</trackback:ping><description><![CDATA[ <p>1。代?br /><IFRAME ID='ifm2' WIDTH='189' HEIGHT='190' ALIGN='CENTER' MARGINWIDTH='0' MARGINHEIGHT='0' HSPACE='0' VSPACE='0' FRAMEBORDER='0' SCROLLING='NO' SRC='http://weather.qq.com/inc/ss258.htm'></IFRAME><br /><br><br><br><br></p> <p><iframe width="145" height="130" border="0" align="center" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no" src="<a allowTransparency="true"></iframe><br /><br><br><br><br></p> <p><iframe ALIGN='center' src="<a width="168" height="54" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no"></iframe><br /><br><br><br><br></p> <p><IFRAME ID='ifm1' WIDTH='405' HEIGHT='332' ALIGN='center' MARGINWIDTH='0' MARGINHEIGHT='0' HSPACE='0' VSPACE='0' FRAMEBORDER='0' SCROLLING='NO' SRC="<a ></IFRAME</a>> <br /><br><br><br></p> <p><iframe width=160 height=230 frameborder=0 ALIGN='center' scrolling=NO src=http://appnews.qq.com/cgi-bin/news_qq_search?city=q州></iframe> <br /><br><br><br></p> <p><iframe width="469" height="218" border="0" align="center" marginwidth="0" marginheight="0" hspace="0" vspace="0" frameborder="0" scrolling="no" src="<a allowTransparency="true"></iframe><br /><br><br><br /><IFRAME ID='ifm1' WIDTH='260' HEIGHT='70' ALIGN='CENTER' MARGINWIDTH='0' MARGINHEIGHT='0' HSPACE='0' VSPACE='0' FRAMEBORDER='0' SCROLLING='NO' src="<a ></iframe</a>></p> <p>效果如下Q?br /><br /><br /><iframe id="ifm20" align="center" marginwidth="0" marginheight="0" src="http://weather.qq.com/inc/ss258.htm" frameborder="0" width="189" scrolling="no" height="190"></iframe><br /><br /><br /><br /><iframe border="0" align="center" marginwidth="0" marginheight="0" src="http://minisite.qq.com/Weather/news_new.html" frameborder="0" width="145" scrolling="no" height="130" allowtransparency=""></iframe><br /><br /><br /><br /><iframe border="0" align="center" marginwidth="0" marginheight="0" src="http://weather.265.com/weather.htm" frameborder="no" width="168" scrolling="no" height="54"></iframe><br /><br /><br /><br /><iframe id="ifm1" align="center" marginwidth="0" marginheight="0" src="http://weather.qq.com/24.htm" frameborder="0" width="405" scrolling="no" height="332"></iframe><br /><br /><br /><iframe align="center" src="http://appnews.qq.com/cgi-bin/news_qq_search?city=q州" frameborder="0" width="160" scrolling="no" height="230"></iframe><br /><br /><br /><iframe border="0" align="center" marginwidth="0" marginheight="0" src="http://appnews.qq.com/cgi-bin/news_weather_search?city=q州" frameborder="0" width="469" scrolling="no" height="218" allowtransparency=""></iframe><br /><br /><iframe id="ifm10" align="center" marginwidth="0" marginheight="0" src="http://news.sina.com.cn/iframe/weather/440101.html" frameborder="0" width="260" scrolling="no" height="70"></iframe></p> <img src ="http://www.aygfsteel.com/pear/aggbug/78939.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/pear/" target="_blank">pear</a> 2006-11-03 16:07 <a href="http://www.aygfsteel.com/pear/archive/2006/11/03/78939.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>用Sun creator创徏?jsf 目部v到其他服务器的问题: http://www.aygfsteel.com/pear/archive/2006/10/02/73182.htmlpearpearMon, 02 Oct 2006 02:59:00 GMThttp://www.aygfsteel.com/pear/archive/2006/10/02/73182.htmlhttp://www.aygfsteel.com/pear/comments/73182.htmlhttp://www.aygfsteel.com/pear/archive/2006/10/02/73182.html#Feedback1http://www.aygfsteel.com/pear/comments/commentRss/73182.htmlhttp://www.aygfsteel.com/pear/services/trackbacks/73182.html用Sun creator创徏?jsf 目部v到其他服务器的问题:

对jsf目的支持,sun creator 无疑lh一U?耳目一新的感觉Q?br />他对可视化开发的支持真的开始可以和.Net较劲了?/p>

但是 creator 有个问题是可以把项目部|到 sun app server的项目部|到其他服务器老是出同L问题Q?br /> 
下面ȝ一下:

步骤一:  把项目导出成 *.war文g
步骤?  ?.war拯到其他服务器的部|目?br />         比如 tomcat/resin ?webapp?br />步骤?  q行服务?tomcat/resin) 问题来了,出现异常
[10:41:34.828] java.lang.NullPointerException
[10:41:34.828]  at javax.faces.webapp.FacesServlet.init(FacesServlet.java:144)
[10:41:34.828]  at com.caucho.server.dispatch.ServletConfigImpl.createServletImpl(ServletConfigImpl.java:646)
[10:41:34.828]  at com.caucho.server.dispatch.ServletConfigImpl.createServlet(ServletConfigImpl.java:587)

看到q个"FacesServlet.java:144" 开始我怀疑是sun 的包的问? |上google和baidu了一?没搜到相关问题的解决办法.
    最后在一个朋友的帮助下在web.xml文g里加了个Listener:
      <listener>
        <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
     </listener>
?q真?

心得如下:
     在用workshop或者myeclipse用myfaces包徏jsf目?我们不会到cM的问?
因ؓ工具已经在web.xml里面加了listener:
 <listener>
  <!-- Listener, that does all the startup work (configuration, init). -->
  <listener-class>org.apache.myfaces.webapp.StartupServletContextListener    </listener-class>
 </listener>
但是如果用这些工L sun jsf 包时p手动listerner.(?步骤?

l大家个q接: sun creator的教E?从这里开始学jsf感觉比较全面:
http://gceclub.sun.com.cn/prodtech/javatools/jscreator/learning/tutorials/index.html



pear 2006-10-02 10:59 发表评论
]]>
BBS中的一个查询问题(原创Q?http://www.aygfsteel.com/pear/archive/2006/09/28/72654.htmlpearpearThu, 28 Sep 2006 10:49:00 GMThttp://www.aygfsteel.com/pear/archive/2006/09/28/72654.htmlhttp://www.aygfsteel.com/pear/comments/72654.htmlhttp://www.aygfsteel.com/pear/archive/2006/09/28/72654.html#Feedback0http://www.aygfsteel.com/pear/comments/commentRss/72654.htmlhttp://www.aygfsteel.com/pear/services/trackbacks/72654.html问题Q?br />在BBS中,content 和?review 两张表,其中content 记录的是 帖子信息Qtopic_id,topic_title,topic_content{字D)Qreview 表中记录的是回帖的信息,(review_id,topic_id{字D??求一SQL语句Q其中topic_id和review_id都是自动增加Q现在要求查询出有最新回复的帖子的信息,同时要求有多个回复的一个帖子的主题只能昄一ơ,能用一个SQL语句搞定吗?数据库是MYSQL 求高手指点下

回答Q?br />select t.id,t.title,t.content,r.newposttime from topic as t inner join (select max(posttime) as newposttime, topicid from review group by topicid) as r on t.id=r.topicid
 
//试
create table topic(
  id int primary key identity(1,1),
  title varchar(128),
  content text
)

insert into topic(title,content) values('title1','content1')
insert into topic(title,content) values('title1','content1')
insert into topic(title,content) values('title1','content1')
insert into topic(title,content) values('title1','content1')
insert into topic(title,content) values('title1','content1')
insert into topic(title,content) values('title1','content1')
insert into topic(title,content) values('title1','content1')
insert into topic(title,content) values('title1','content1')
insert into topic(title,content) values('title1','content1')
insert into topic(title,content) values('title1','content1')


create table review(
  id int primary key identity(1,1),
  topicid int references topic(id),
  content text,
  posttime datetime default getdate()
)

insert into review(topicid,content) values(1,'reice1')
insert into review(topicid,content) values(1,'reice1')
insert into review(topicid,content) values(2,'reice1')
insert into review(topicid,content) values(2,'reice1')
insert into review(topicid,content) values(2,'reice1')
insert into review(topicid,content) values(3,'reice1')
insert into review(topicid,content) values(3,'reice1')
insert into review(topicid,content) values(3,'reice1')
insert into review(topicid,content) values(3,'reice1')
insert into review(topicid,content) values(4,'reice1')

select t.id,t.title,t.content,r.newposttime from topic as t inner join (select max(posttime) as newposttime, topicid from review group by topicid) as r on t.id=r.topicid

q些是测试数?sqlserver2000试通过



pear 2006-09-28 18:49 发表评论
]]>
AJAX传参从失败到成功结:http://www.aygfsteel.com/pear/archive/2006/08/13/63342.htmlpearpearSun, 13 Aug 2006 09:36:00 GMThttp://www.aygfsteel.com/pear/archive/2006/08/13/63342.htmlhttp://www.aygfsteel.com/pear/comments/63342.htmlhttp://www.aygfsteel.com/pear/archive/2006/08/13/63342.html#Feedback8http://www.aygfsteel.com/pear/comments/commentRss/63342.htmlhttp://www.aygfsteel.com/pear/services/trackbacks/63342.htmlAJAX传参从失败到成功结:

看了AJAX基础教程,感觉不错,但是在向服务器传递参数的时候L会有让我感到苦恼的问?
比如下面的代?
<SCRIPT type="text/javascript">
   function createXMLHttpRequest(){
      if(window.ActiveXObject){
         xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");     
      }else if(window.XMLHttpRequest){
         xmlHttp = new XMLHttpRequest();
      }
   }
   function startRequest(Sid){
      createXMLHttpRequest();
      xmlHttp.open("GET","/CountServlet?Sid="+Sid,true);
      xmlHttp.send(null);
   }
</SCRIPT>
在服务端的CountServlet的doGet()Ҏ在多ơ请求之间只会被调用一?痛苦!!!(N是异步的问题...)

于是我又改了一下xmlHttp的openҎ的参数如?
xmlHttp.open("POST","/CountServlet,true)
xmlHttp.send("Sid="+Sid);
l果在服务器端的doPost()Ҏ在每ơ请求都会被正常调用,但是,request.getPrameter("Sid")Ҏ是怎么也获得不到参数Sid,

在高手的帮助?我又再次改了代码,如下:
xmlHttp.open("POST","/CountServlet?Sid="+Sid,false);
xmlHttp.send(null);
?q真?牙好,胃口好,入口见效,doPost()Ҏ能正常被调用,参数也传得到,具体是什么原?我还在学习之?..

8.19日加Q?br />解决办法Q?br />除了高手回复的方?q有一U解军_法就?
xmlHttp.open("GET","/CountServlet?Sid="+Sid+"&timeStamp="+new Date().getTime(),false);
xmlHttp.send(null);
同样是解决缓存的问题..



pear 2006-08-13 17:36 发表评论
]]>
ServiceLocator 中一般包含staticҎhttp://www.aygfsteel.com/pear/archive/2006/07/10/57503.htmlpearpearMon, 10 Jul 2006 06:53:00 GMThttp://www.aygfsteel.com/pear/archive/2006/07/10/57503.htmlhttp://www.aygfsteel.com/pear/comments/57503.htmlhttp://www.aygfsteel.com/pear/archive/2006/07/10/57503.html#Feedback1http://www.aygfsteel.com/pear/comments/commentRss/57503.htmlhttp://www.aygfsteel.com/pear/services/trackbacks/57503.html2。ServiceLocator角色  如果让TopBaseAction承担Q可以非静态,也很方便Q?br />3。ServiceLocator的角色和SessionFactory有些cMQ都是用工厂模式Q?br />
10?日,今天玩了一下把 Service层的实力注入到Action里面,我的ServiceLocatorcMl于可以睡觉M.

pear 2006-07-10 14:53 发表评论
]]>
JavaMail中文附g处理(转蝲) http://www.aygfsteel.com/pear/archive/2006/06/16/53387.htmlpearpearFri, 16 Jun 2006 12:12:00 GMThttp://www.aygfsteel.com/pear/archive/2006/06/16/53387.htmlhttp://www.aygfsteel.com/pear/comments/53387.htmlhttp://www.aygfsteel.com/pear/archive/2006/06/16/53387.html#Feedback0http://www.aygfsteel.com/pear/comments/commentRss/53387.htmlhttp://www.aygfsteel.com/pear/services/trackbacks/53387.html阅读全文

pear 2006-06-16 20:12 发表评论
]]>
վ֩ģ壺 | | | ֦| | ƽ| ̽| | | ͷ| | | ɽ| | ·| | Ѿ| | ¡| | ײ| | | ÷| | | | | ƽ| | | | ȫ| ̨| ߶| | | | | | |