<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/">
  <channel>
    <title><![CDATA[漫步人生博客]]></title> 
    <link>http://blog.fuzhouren.com.cn/</link> 
    <description><![CDATA[A Place for Expression]]></description> 
    <language>en</language> 
    <copyright><![CDATA[Copyright 2008, 漫步人生博客]]></copyright> 
    <webMaster><![CDATA[bain-hsl@163.com (福州人)]]></webMaster> 
    <generator>LBS v2.0.304</generator> 
    <pubDate>Fri, 21 Nov 2008 13:09:06 +0800</pubDate> 
    <ttl>60</ttl>
  
    <item>
      <title><![CDATA[关于IFRAME 自适应高度的研究]]></title> 
      <link><![CDATA[http://blog.fuzhouren.com.cn/article.asp?id=142]]></link> 
      <category><![CDATA[技术文档]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Tue, 03 Jun 2008 11:38:08 +0800</pubDate> 
      <description><![CDATA[　　代码如下：<br /><br />&lt;html&gt;&lt;head&gt;<br />&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=gb2312&quot;&gt;<br />&lt;meta name=&quot;GENERATOR&quot; content=&quot;Microsoft FrontPage 4.0&quot;&gt;<br />&lt;meta name=&quot;ProgId&quot; content=&quot;FrontPage.Editor.Document&quot;&gt;<br />&lt;title&gt;New Page 1&lt;/title&gt;<br />&lt;/head&gt;<br /><br />&lt;body&gt;<br />&lt;IFRAME id=&quot;test&quot; name=&quot;test&quot; frameBorder=0 scrolling=no src=&quot;<a href="http://www.366live.com" title="http://www.366live.com" target="_blank">http://www.366live.com</a>&quot; width=&quot;100%&quot; height=0&gt;&lt;/IFRAME&gt;<br />&lt;/body&gt;<br /><br />&lt;/html&gt;<br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.fuzhouren.com.cn/feed.asp?q=comment&id=142]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[MSSQL中使用CASE函数来灵活返回结果]]></title> 
      <link><![CDATA[http://blog.fuzhouren.com.cn/article.asp?id=141]]></link> 
      <category><![CDATA[SQL技术]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Fri, 23 May 2008 13:35:00 +0800</pubDate> 
      <description><![CDATA[从数据库中SELECT出数据后需要根据返回的值输入不同字符时可在查询时使用CASE函数。<br />比如 用户表的 用户类型 在数据库中是用的GroupID字段来表示，可以这样来查询：<br />select id,userName,GropuID=CASE WHEN GropuID=0 THEN &#39;个人用户&#39; WHEN GroupID=1 THEN &#39;企业用户&#39; END,QQ from User<br /><br />PS. 帮助文档上这样描述CASE的：<br /><br />CASE 函数是特殊的 Transact-SQL 表达式，它允许按列值显式可选值。数据中的更改是临时的，没有对数据进行永久更改。例如，CASE 函数可以在 state 列中有 CA 值的行的查询结果集内显示 California。<br />CASE 函数包含： <br />CASE 关键字。<br /><br />需要转换的列名称。<br /><br />指定要搜索的表达式的 WHEN 子句和指定要替换它们的表达式的 THEN 子句。<br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.fuzhouren.com.cn/feed.asp?q=comment&id=141]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[SQL查询语句，可以指定类别排序且顺序]]></title> 
      <link><![CDATA[http://blog.fuzhouren.com.cn/article.asp?id=140]]></link> 
      <category><![CDATA[SQL技术]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Fri, 23 May 2008 13:25:18 +0800</pubDate> 
      <description><![CDATA[SQL 指定类别排序；<br />use pubs<br />SELECT type<br />FROM titles <br /><br />按type类型排序，use pubs<br />SELECT type<br />FROM titles order by type;<br />可如果我们需要这个类型中的mod_cock 排序在前面怎么做呢，请看下文<br />SELECT *,CASE type when &#39;mod_cook&#39; then &#39;1&#39;  when &#39;business&#39; then &#39;2&#39; else &#39;3&#39; end as type2<br />FROM titles order by type2 desc<br /><br />使用case重新指定数字值。<br /><br />本人已经测试过，可以的。]]></description>
      <wfw:commentRss><![CDATA[http://blog.fuzhouren.com.cn/feed.asp?q=comment&id=140]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[ASP.NET生成静态页面的方法]]></title> 
      <link><![CDATA[http://blog.fuzhouren.com.cn/article.asp?id=139]]></link> 
      <category><![CDATA[DotNet技术]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Wed, 21 May 2008 12:38:04 +0800</pubDate> 
      <description><![CDATA[使用ASP.NET生成静态页面的方法有两种，第一种是使用C#在后台硬编码，第二种是读取模板文件，使用字符串替换的方法。第一种方法编码量大，而且维护比较困难。我重点讲解第二种方法。第二种方法的基本思路是：使用DW之类的工具生成一个静态页面模板。读取该模板文件，然后对里面的特殊标记使用真实的数据替换掉，并生成一个HTML文件<br />请看代码<br />1.C#<br /><br /> 1using System;<br /> 2using System.Collections.Generic;<br /> 3using System.Text;<br /> 4using System.Xml;<br /> 5using System.IO;<br /> 6<br /> 7namespace htmlWeb<br /> 8{<br /> 9   public class CreateHtm<br />10    {<br />11      <br />12<br />13       private string fileName;<br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.fuzhouren.com.cn/feed.asp?q=comment&id=139]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[使用函数传递参数来执行数据库操作]]></title> 
      <link><![CDATA[http://blog.fuzhouren.com.cn/article.asp?id=138]]></link> 
      <category><![CDATA[DotNet技术]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Sat, 17 May 2008 12:12:54 +0800</pubDate> 
      <description><![CDATA[ASP.NET中，经常会使用到templates(模版)功能，比如在datagrid,datalist,repeater等控件中，使用templates,将会大大增强其功能。以往，我们一般是在设计程序时，就已经设置好控件中的模版是怎样的了。但是，有的时候，可能我们需要动态加载模版，比如，当你要求你的应用程序的界面风格随着用户的需求而变化时，你就需要到动态加载模版的功能了。但要注意的是，并不是所有的web控件都支持模版功能，而且要注意，哪些控件支持模版的哪些功能，下面简单列出了一些支持模版功能的控件： <br />   <br />  　　Repeater控件，支持的模版有： <br />   <br />  HeaderTemplate, FooterTemplate, ItemTemplate, AlternatingItemTemplate, SeperatorTemplate. <br />   <br />  　　Datelist控件，支持的模版有： <br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.fuzhouren.com.cn/feed.asp?q=comment&id=138]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[优化网站的20条重要体会]]></title> 
      <link><![CDATA[http://blog.fuzhouren.com.cn/article.asp?id=137]]></link> 
      <category><![CDATA[资源共享]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Fri, 09 May 2008 16:39:24 +0800</pubDate> 
      <description><![CDATA[1. 尽量不要把整个页面都用Flash或者图片来实现, 这样SE无法找到页面的有用信息.<br /><br />2. 下载一个spider模拟器, 来查看你网页被SE检测到的信息, 可以在这个网址查看你页面被搜索引擎收集到的信息: <a href="http://www.webconfs.com/search-engine-spider-simulator.php," title="http://www.webconfs.com/search-engine-spider-simulator.php," target="_blank">http://www.webconfs.com/search-engine-spider-simulator.php,</a> 根据这些信息, 修改页面, 去掉无用信息, 增加你认为有用的信息。<br /><br />3. 用标准代码设计你的网页,一个页面最主要有2个部分需要关注, 一个是&lt;head&gt;&lt;/head&gt;, 另外一个是&lt;boy&gt;&lt;/body&gt;, 至少这2部分应该设计好了, SE喜欢从左到右,自上而下搜索信息, 它认为页面上面的信息更重要, 所以尽量把你要突出的信息放在页面的上面<br /><br />4. &lt;title&gt;标志:  <br /><br />title标志作为页面的其实信息, SE非常看重, 应该把本页面要突出的信息精简到20个字以内作为title的值. ]]></description>
      <wfw:commentRss><![CDATA[http://blog.fuzhouren.com.cn/feed.asp?q=comment&id=137]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[我的谷歌排名哪里去了?]]></title> 
      <link><![CDATA[http://blog.fuzhouren.com.cn/article.asp?id=136]]></link> 
      <category><![CDATA[资源共享]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Fri, 09 May 2008 16:22:24 +0800</pubDate> 
      <description><![CDATA[在诸如 Google（谷歌）这样的搜索引擎中排名的好坏直接关系到企业或公司的经营。很多网站都千方百计地使他们排在相关查询的前列。对某些网站来说，如果谷歌不收录他们，或将他们降权，后果不堪设想。但是，搜索质量是谷歌的生命。谷歌总是在不断地提高搜索质量。在一些情况下，谷歌不得不对某些网站进行降权处理，甚至直接从谷歌的搜索结果中删除。本文介绍一些可能导致谷歌降权或删除的情况，并给出一些补救办法。<br /><br />谷歌对某一网站惩罚的最常见的原因就是网站的网络作弊。在谷歌网站管理员指南中，谷歌指出了如何设计网站，网站的内容应包含哪些，网站管理员必须了解哪些技术，并给出了网站的质量指南。任何违反网站质量指南的网站都被称为作弊网站，并可能受到惩罚。在质量指南中，下列行为被认为是作弊：隐藏文本或隐藏链接；隐藏真实内容或欺骗性重定向；向谷歌发送自动查询；使用无关用语加载网页；创建包含大量重复内容的多个网页、子域或域；针]]></description>
      <wfw:commentRss><![CDATA[http://blog.fuzhouren.com.cn/feed.asp?q=comment&id=136]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[大型网站优化策略]]></title> 
      <link><![CDATA[http://blog.fuzhouren.com.cn/article.asp?id=135]]></link> 
      <category><![CDATA[技术文档]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Fri, 09 May 2008 16:13:20 +0800</pubDate> 
      <description><![CDATA[这是星箭今天在点石SEM大会上的演讲内容，考虑到很多SEOer没有去现场，特将手稿与PPT跟大家一起分享。这次演讲时间比较短，很多话内容没有机会进行深入的演讲，大家将就着看吧：） <br /> <br /> <br />大家好，我是星箭，今天我要演讲的主题是：大型网站的优化策略 <br /> <br />在搜索引擎优化中，SEO策略影响到最终的优化效果。SEO策略不管对中小网站还是大型网站都是重要的，而对于大型网站，制定一个好的SEO策略尤为重要。 <br /> <br />一、首先我们来看第一部分：关键词分析。 <br />关键词分析是所有SEO必须掌握的一门功课，大型网站虽然有海量的数据，但是每个页面都需要进行关键词分析，除了SEO之外，策划、编辑也需要具备一定的关键词分析能力。 <br /> <br />我们来看关键词分析的基本原则： <br />1、 调查用户的搜索习惯：这是一个重要的方面，只有了解用户的搜索习惯，我们才能把我用户的搜索需求，用户喜欢搜索什么？用什么搜索引擎？等等 <br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.fuzhouren.com.cn/feed.asp?q=comment&id=135]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[过滤HTML代码的函数包括过滤CSS和JS]]></title> 
      <link><![CDATA[http://blog.fuzhouren.com.cn/article.asp?id=134]]></link> 
      <category><![CDATA[资源共享]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Sat, 07 Apr 2007 01:42:18 +0800</pubDate> 
      <description><![CDATA[&#39;过滤HTML代码的函数包括过滤CSS和JS<br />Function RemoveHTML(strHTML)    &#39;过滤HTML代码的函数包括过滤CSS和JS<br />StrHtml = Replace(StrHtml,vbCrLf,&quot;&quot;)<br />StrHtml = Replace(StrHtml,Chr(13)&amp;Chr(10),&quot;&quot;)<br />StrHtml = Replace(StrHtml,Chr(13),&quot;&quot;)<br />StrHtml = Replace(StrHtml,Chr(10),&quot;&quot;)<br />StrHtml = Replace(StrHtml,&quot; &quot;,&quot;&quot;)<br />StrHtml = Replace(StrHtml,&quot;    &quot;,&quot;&quot;)<br /> Dim objRegExp, Match, Matches <br /> Set objRegExp = New Regexp<br /> objRegExp.IgnoreCase = True<br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.fuzhouren.com.cn/feed.asp?q=comment&id=134]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[Asp.Net函数集]]></title> 
      <link><![CDATA[http://blog.fuzhouren.com.cn/article.asp?id=133]]></link> 
      <category><![CDATA[DotNet技术]]></category> 
      <author><![CDATA[Admin <null@null.com>]]></author> 
      <pubDate>Thu, 05 Apr 2007 16:34:01 +0800</pubDate> 
      <description><![CDATA[1、DateTime 数字型 <br />System.DateTime currentTime=new System.DateTime(); <br />1.1 取当前年月日时分秒 <br />currentTime=System.DateTime.Now; <br />1.2 取当前年 <br />int 年=currentTime.Year; <br />1.3 取当前月 <br />int 月=currentTime.Month; <br />1.4 取当前日 <br />int 日=currentTime.Day; <br />1.5 取当前时 <br />int 时=currentTime.Hour; <br />1.6 取当前分 <br />int 分=currentTime.Minute; <br />1.7 取当前秒 <br />int 秒=currentTime.Second; <br />1.8 取当前毫秒 <br />int 毫秒=currentTime.Millisecond; <br />（变量可用中文） <br /><br />2、Int32.Parse(变量) Int32.Parse(&quot;常量&quot;) <br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.fuzhouren.com.cn/feed.asp?q=comment&id=133]]></wfw:commentRss>
    </item>
      
  </channel>
</rss>
