<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title><![CDATA[不懂戀愛魚兒]]></title> 
<description><![CDATA[最近很忙.有问题请直接在文章下发表评论说明.我会尽快回复.加Q的一律不回.敬请谅解.]]></description>
<link>http://www.souab.com/</link>
<language>zh-cn</language>
<generator>www.emlog.net</generator>

<item>
	<title>FCKeditor更改字体大小方法(更改为PX)</title>
	<link>http://www.souab.com/?post=141</link>
	<description><![CDATA[<p>打开<span style="color: #00f">fckconfig.js</span>
找到<span style="color: #f00">FCKConfig.FontSizes</span>
</p>
<p>原始代码为：FCKConfig.FontSizes&nbsp;&nbsp;= &#39;smaller;larger;xx-small;x-small;small;medium;large;x-large;xx-large&#39; ;</p>
<p>将其更改为：<span style="color: #f00">FCKConfig.FontSizes&nbsp;&nbsp;= &#39;9/9px;10/10px;12/12px;14/14px;16/16px;18/18px;24/24px;36/36px&#39; ;</span>
</p>
<p>即可</p>]]></description>
	<pubDate>Wed, 01 Sep 2010 10:11:00 +0000</pubDate>
	<author>不懂戀愛魚兒</author>
	<guid>http://www.souab.com/?post=141</guid>

</item>
<item>
	<title>淘宝网顶部导航菜单</title>
	<link>http://www.souab.com/?post=139</link>
	<description><![CDATA[<p>演示地址：<strong><a href="http://www.souab.com/Demo/201008/TaoBaoTop/" style="color: #ff0000" target="_blank">http://www.souab.com/Demo/201008/TaoBaoTop/</a>
 </strong>
</p>
<p>支持我的请点下广告。谢谢</p>
<p>源文件打包存于下方。请例用右键另存为。</p>]]></description>
	<pubDate>Fri, 20 Aug 2010 09:22:01 +0000</pubDate>
	<author>不懂戀愛魚兒</author>
	<guid>http://www.souab.com/?post=139</guid>

</item>
<item>
	<title>解决eWebEditor上传图片提示:请选择一个有效的文件,支持的格式有(GIF|JPG|JPEG|BMP|PNG)!</title>
	<link>http://www.souab.com/?post=140</link>
	<description><![CDATA[<p>一般出现这个问题会出现在WIN2003的系统下。解决办法：</p>
<p>　　先打开:Internet 信息服务(IIS)管理器 　</p>
<p>　　(本地计算机 )---- 属性 ----允许直接编辑配置数据库(N)</p>
<p>　　一定要勾先&ldquo;允许直接编辑配置数据库(N)&rdquo;</p>
<p>　　然后在&nbsp;&nbsp; 服务&nbsp;&nbsp;&nbsp;&nbsp; 里关闭iis admin service服务</p>
<p>　　找到windows\system32\inesrv下的metabase.xml, 用计事本打开metabase.xml，找到ASPMaxRequestEntityAllowed 把他修改为需要的值，默认为204800，即200K</p>
<p>　　把它修改为51200000保存.</p>
<p>　　然后在&nbsp;&nbsp; 服务&nbsp;&nbsp;&nbsp;&nbsp; 里重启iis admin service服务和Internet 信息服务(IIS)管理器 启动网站服务.</p>]]></description>
	<pubDate>Tue, 17 Aug 2010 03:15:04 +0000</pubDate>
	<author>不懂戀愛魚兒</author>
	<guid>http://www.souab.com/?post=140</guid>

</item>
<item>
	<title>家乐福多图三屏切换代码</title>
	<link>http://www.souab.com/?post=137</link>
	<description><![CDATA[<p>演示地址：<strong><a href="http://www.souab.com/Demo/201008/CarrefourPic/" style="color: #ff0000" target="_blank">http://www.souab.com/Demo/201008/CarrefourPic/</a>
 </strong>
</p>
<p>支持我的话请点下广告。谢谢。</p>
<p>源文件打包在下面。请通过右键另存为下载。</p>]]></description>
	<pubDate>Tue, 17 Aug 2010 00:59:19 +0000</pubDate>
	<author>不懂戀愛魚兒</author>
	<guid>http://www.souab.com/?post=137</guid>

</item>
<item>
	<title>京东产品内页多图展示代码</title>
	<link>http://www.souab.com/?post=138</link>
	<description><![CDATA[<p>演示地址：<strong><a href="http://www.souab.com/Demo/201008/PagePic/" style="color: #ff0000" target="_blank">http://www.souab.com/Demo/201008/PagePic/</a>
 </strong>
</p>
<p>支持我的请点击广告。谢谢</p>
<p>请点击下方源文件下载。请使用右键另存为下载。</p>]]></description>
	<pubDate>Sun, 15 Aug 2010 09:05:17 +0000</pubDate>
	<author>不懂戀愛魚兒</author>
	<guid>http://www.souab.com/?post=138</guid>

</item>
<item>
	<title>Asp随机生成一个密码</title>
	<link>http://www.souab.com/?post=136</link>
	<description><![CDATA[<p><span style="color: #f00">&lt;% <br />&#39;生成随机密码</span>
</p>
<p><span style="color: #f00">genPassword = &quot;&quot;<br />Randomize<br />For i = 1 to 8<br />intNum = Int(10 * Rnd + 48)<br />intUpper = Int(26 * Rnd + 65)<br />intLower = Int(26 * Rnd + 97)<br />intRand = Int(3 * Rnd + 1)<br />Select Case intRand<br />Case 1<br />strPartPass = Chr(intNum)<br />Case 2<br />strPartPass = Chr(intUpper)<br />Case 3<br />strPartPass = Chr(intLower)<br />End Select<br />genPassword = genPassword &amp; strPartPass<br />Next<br />response.write(genPassword &amp; &quot;&lt;br&gt;&quot;)<br />&nbsp;%&gt;</span>
</p>]]></description>
	<pubDate>Thu, 12 Aug 2010 03:50:38 +0000</pubDate>
	<author>不懂戀愛魚兒</author>
	<guid>http://www.souab.com/?post=136</guid>

</item>
<item>
	<title>Asp价格大于10000时显示万字方法</title>
	<link>http://www.souab.com/?post=135</link>
	<description><![CDATA[<p>直接COPY下面代即可</p>
<p><span style="color: #f00">&lt;%<br />Dim Punit<br />Punit=150000 &#39;此处调用你的价格或其它数值<br />if Punit&gt;=10000 then<br />response.write Punit/10000 &amp; &quot;万元&quot;<br />else<br />response.write Punit &amp; &quot;元&quot;<br />end if%&gt;</span>
</p>]]></description>
	<pubDate>Thu, 12 Aug 2010 03:47:10 +0000</pubDate>
	<author>不懂戀愛魚兒</author>
	<guid>http://www.souab.com/?post=135</guid>

</item>
<item>
	<title>FCKeditor Asp版上传文件时自动重命名方法</title>
	<link>http://www.souab.com/?post=133</link>
	<description><![CDATA[<p>至于FCK的精减就不说了．可以百度一下或者说哪天有时间了再写这个精减文章．(本版本为FCK 2.6.6)</p>
<p>首先打开FCKeditor\editor\filemanager\connectors\asp\config.asp文件．</p>
<p><span style="color: #f00">ConfigIsEnabled = true &#39;启用上传功能 把 false 改成 true</span>
</p>
<p>然后找到FCKeditor\editor\filemanager\connectors\asp\下的</p>
<p>commands.asp　与　io.asp文件</p>
<p>在<u><strong><span style="color: #b22222">commands.asp</span>
 </strong>
</u>
里</p>
<p>找到：<span style="color: #f00">sFileName = SanitizeFileName( sFileName )</span>
</p>
<p>在这行的下边一行添加：</p>
<p><span style="color: #00f">sFileName = GetID(&quot;LwpCms&quot;) &amp; &quot;.&quot; &amp; Split(sFileName,&quot;.&quot;)(1)</span>
</p>
<p>在<u><span style="color: #b22222"><strong>io.asp</strong>
 </span>
</u>
里</p>
<p>找到：<span style="color: #f00">function SanitizeFileName( sNewFileName )</span>
</p><p><a href="http://www.souab.com/?post=133">阅读全文&gt;&gt;</a></p>]]></description>
	<pubDate>Wed, 11 Aug 2010 02:26:18 +0000</pubDate>
	<author>不懂戀愛魚兒</author>
	<guid>http://www.souab.com/?post=133</guid>

</item>
<item>
	<title>dreamweaver初始化扩展数据时卡住</title>
	<link>http://www.souab.com/?post=132</link>
	<description><![CDATA[<p>
	C:\Documents and Settings\Administrator\Application Data\Macromedia\Dreamweaver 8\Configuration\</p>
<p>
	缓存和一些临时文件</p>
<p>
	删除SiteCache中的内容 启动成功</p>]]></description>
	<pubDate>Mon, 09 Aug 2010 13:15:42 +0000</pubDate>
	<author>不懂戀愛魚兒</author>
	<guid>http://www.souab.com/?post=132</guid>

</item>
<item>
	<title>安装程序配置服务器失败。参考服务器错误日志和 C:\WINDOWS\sqlstp.log 了解更多信息</title>
	<link>http://www.souab.com/?post=131</link>
	<description><![CDATA[<p>
	Process Exit Code: (1060) 指定的服务未安装</p>
<p>
	SQLServer2000重装.装到最后配制文件时.却跳出一个对话框&quot;安装程序配置服务器失败。参考服务器错误日志和 C:\WINDOWS\sqlstp.log 了解更多信息。&quot;</p>
<p>
	查了安装日志如下:</p><p><a href="http://www.souab.com/?post=131">阅读全文&gt;&gt;</a></p>]]></description>
	<pubDate>Tue, 20 Jul 2010 12:46:20 +0000</pubDate>
	<author>不懂戀愛魚兒</author>
	<guid>http://www.souab.com/?post=131</guid>

</item></channel>
</rss>