<?php xml version="1.0" encoding="UTF-8"?> 
<feed xmlns="http://www.w3.org/2005/Atom">
<title type="html"><![CDATA[云开发团队软件、网络技术资讯网]]></title>
<subtitle type="html"><![CDATA[李嘉的计算机软件编程、网站运营建设、SEO优化杂文系列云端开发团队博客（联系方式:15062452488,QQ:305331558,李嘉）]]></subtitle>
<id>http://www.mockte.com</id> 
<link rel="alternate" type="text/html" href="http://www.mockte.com" /> 
<link rel="self" type="application/atom+xml" href="http://www.mockte.comatom.php" /> 
<generator uri="http://www.f2blog.com/" version="1.2 build 03.01">F2Blog</generator> 
<updated>2011-12-30 06:14:49</updated> 
<entry>
  <title type="html"><![CDATA[CKEditor获取编辑器文章内容和设定编辑器内容（JS方式）]]></title>
  <author>
	 <name>李嘉</name>
	 <uri>http://www.mockte.comrewrite.php/read-517.html</uri>
	 <email>devinmoce@gmail.com</email>
  </author>
  <category term="" scheme="http://www.mockte.comrewrite.php/category-4.html" label="WEB 技术" /> 
  <updated>2011-12-30 06:14:49</updated>
  <published>2011-12-30 06:14:49</published>
  <content type='text'><![CDATA[<p>CkEditor和Fckeditor有很大的差别，同样获取文章编辑器内容和设定内容的方式各不相同，CkEditor的设定方式参照以下例子，首先:<br /> <font color="#000080">&lt;textarea cols=&quot;80&quot; id=&quot;<font color="#ff0000">editor1</font>&quot; rows=&quot;10&quot;&gt; &lt;/textarea&gt;<br /> &lt;script type=&quot;text/javascript&quot;&gt;<br /> &nbsp;&nbsp;&nbsp; CKEDITOR.replace(&#39;<font color="#ff0000">editor1</font>&#39;);<br /> &lt;/script&gt;<br /> <font color="#000000">然后，以下方式可以获取和设定问斩国内容：<br /> <font color="#008000">// 设定文章内容<br /> </font><font color="#000080">CKEDITOR.instances.<font color="#ff0000">editor1</font>.setData(obj.result[0].Content);<br /> <font color="#008000">// 获取文章内容</font><br /> var f_content = CKEDITOR.instances.<font color="#ff0000">editor1</font>.getData();<br /> <font color="#000000">这样就完成了内容获取和设定。需要注意的就是<font color="#ff0000">标红</font>部分。</font></font></font></font></p>]]></content>
  <link rel="alternate" type="text/html" href="http://www.mockte.comrewrite.php/read-517.html" /> 
  <id>http://www.mockte.comrewrite.php/read-517.html</id> 
</entry>	
<entry>
  <title type="html"><![CDATA[C#读写更新app.config最佳Winform实例]]></title>
  <author>
	 <name>李嘉</name>
	 <uri>http://www.mockte.comrewrite.php/read-516.html</uri>
	 <email>devinmoce@gmail.com</email>
  </author>
  <category term="" scheme="http://www.mockte.comrewrite.php/category-10.html" label="ASP.NET 编程" /> 
  <updated>2011-11-22 23:53:47</updated>
  <published>2011-11-22 23:53:47</published>
  <content type='text'><![CDATA[<p>通常，app.config文件只允许读取，不允许写入，ConfigurationSettings.AppSettings和ConfigurationManager.AppSettings只是在程序第一次运行时候读取app.config到内存，一旦修改了app.config的值，就无法读取了，所以另外需要一个读取app.config的方法。另外，app.config在程序发布之后，名称会变更为<strong>应用程序名字.exe.config</strong>，在以下的方法里需要修改一下config文件的名字，暂时我先以config.xml文件命名，读取和更新写入app.config的方法函数如下：</p>
<!--more--> <code>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <font color="#339966">/// &lt;summary&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /// 写app.config<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /// &lt;/summary&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /// &lt;param name=&quot;key&quot;&gt;&lt;/param&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /// &lt;param name=&quot;keyValue&quot;&gt;&lt;/param&gt;<br /></font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <font color="#000080">public void UpdateConfig(string key, string keyValue)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; XmlDocument xmlDoc = new XmlDocument();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; string configPath = &quot;config.xml&quot;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmlDoc.Load(configPath);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; XmlNode xmlNode = xmlDoc.SelectSingleNode(&quot;configuration/appSettings/add[@key=&#39;&quot; + key + &quot;&#39;]&quot;);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmlNode.Attributes[&quot;value&quot;].InnerText = keyValue;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmlDoc.Save(configPath);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</font>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <font color="#339966">/// &lt;summary&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /// 读app.config<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /// &lt;/summary&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /// &lt;param name=&quot;key&quot;&gt;&lt;/param&gt;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; /// &lt;returns&gt;&lt;/returns&gt;<br /></font>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <font color="#000080">internal static string GetConfigValue(string key)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; XmlDocument xmlDoc = new XmlDocument();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; string configPath = &quot;config.xml&quot;;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; xmlDoc.Load(configPath);</font></p>
<p><font color="#000080">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; XmlElement xElem = xmlDoc.SelectSingleNode(&quot;//appSettings/add[@key=&#39;&quot; + key + &quot;&#39;]&quot;) as XmlElement;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (xElem != null)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return xElem.GetAttribute(&quot;value&quot;);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return string.Empty;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }</font></p>
</code>]]></content>
  <link rel="alternate" type="text/html" href="http://www.mockte.comrewrite.php/read-516.html" /> 
  <id>http://www.mockte.comrewrite.php/read-516.html</id> 
</entry>	
<entry>
  <title type="html"><![CDATA[PC上用的Barcode条形码扫描防重复软件]]></title>
  <author>
	 <name>李嘉</name>
	 <uri>http://www.mockte.comrewrite.php/read-515.html</uri>
	 <email>devinmoce@gmail.com</email>
  </author>
  <category term="" scheme="http://www.mockte.comrewrite.php/category-113.html" label="云开发产品" /> 
  <updated>2011-11-14 08:56:52</updated>
  <published>2011-11-14 08:56:52</published>
  <content type='text'><![CDATA[<p>主要功能：程序通过扫描条码，将条码Barcode记录在TXT和XML文件中，后续每次打开程序自动加载数据继续扫描，如果扫描到有重复的数据，则会提示&ldquo;条码重复，请重新打印条码！&rdquo;，此时这笔数据不被保存。软件运行界面如下：</p>
<!--more-->
<p><img style="cursor:pointer;" onclick="open_img(&#39;http://www.mockte.comattachments/2011/3/9472831530.png&#39;)" alt="http://www.mockte.comattachments/2011/3/9472831530.png" width="600" height="519" src="http://www.mockte.com/http://www.mockte.comattachments/2011/3/9472831530.png" /></p>]]></content>
  <link rel="alternate" type="text/html" href="http://www.mockte.comrewrite.php/read-515.html" /> 
  <id>http://www.mockte.comrewrite.php/read-515.html</id> 
</entry>	
<entry>
  <title type="html"><![CDATA[Java Tomcat编码设置UTF-8简单记录]]></title>
  <author>
	 <name>李嘉</name>
	 <uri>http://www.mockte.comrewrite.php/read-514.html</uri>
	 <email>devinmoce@gmail.com</email>
  </author>
  <category term="" scheme="http://www.mockte.comrewrite.php/category-110.html" label="Java开发" /> 
  <updated>2011-11-08 10:21:12</updated>
  <published>2011-11-08 10:21:12</published>
  <content type='text'><![CDATA[<p>Tomcat中有时候需设置编码，在server.xml中设定，加上URIEncoding=&quot;UTF-8&quot;，如下：</p>
<!--more-->
<p>&lt;Connector <br />port=&quot;8080&quot;<br />maxThreads=&quot;150&quot; <br />minSpareThreads=&quot;25&quot; maxSpareThreads=&quot;75&quot;<br />enableLookups=&quot;false&quot; <br />redirectPort=&quot;8443&quot; <br />acceptCount=&quot;100&quot;<br />debug=&quot;0&quot; <br />connectionTimeout=&quot;20000&quot;<br />disableUploadTimeout=&quot;true&quot; <br /><font color="#ff0000">URIEncoding=&quot;UTF-8&quot; <br /></font>/&gt;<br /></p>]]></content>
  <link rel="alternate" type="text/html" href="http://www.mockte.comrewrite.php/read-514.html" /> 
  <id>http://www.mockte.comrewrite.php/read-514.html</id> 
</entry>	
<entry>
  <title type="html"><![CDATA[FlashBuilder 4.5官方下载及破JIE方式（特别版，转载）]]></title>
  <author>
	 <name>李嘉</name>
	 <uri>http://www.mockte.comrewrite.php/read-513.html</uri>
	 <email>devinmoce@gmail.com</email>
  </author>
  <category term="" scheme="http://www.mockte.comrewrite.php/category-4.html" label="WEB 技术" /> 
  <updated>2011-10-31 10:03:18</updated>
  <published>2011-10-31 10:03:18</published>
  <content type='text'><![CDATA[<p><span style="COLOR: rgb(0,0,0); FONT-SIZE: small">FB<strong style="BACKGROUND-COLOR: rgb(153,255,153); COLOR: black">4.5</strong>官网下载，这里不再提供官网下载地址，可以在官网很容易找到。</span></p>
<p><span style="COLOR: rgb(0,0,0); FONT-SIZE: small"></span><span style="COLOR: rgb(0,0,0); FONT-SIZE: small">需要下载2个文件才能安装：</span></p>
<p><span style="COLOR: rgb(0,0,0); FONT-SIZE: small">FlashBuilder_4_5_LS10.7z</span><span style="COLOR: rgb(0,0,0); FONT-SIZE: small"><br />FlashBuilder_4_5_LS10.exe</span></p>
<!--more-->
<p><span style="COLOR: rgb(0,0,0); FONT-SIZE: small">安装前找到windows/system32/drivers/etc，用记事本打开文件&quot;HOSTS&quot;。</span></p>
<p><span style="COLOR: rgb(0,0,0); FONT-SIZE: small">如果是在win7系统，更改文件权限 才能更改：</span></p>
<p><span style="COLOR: rgb(0,0,0); FONT-SIZE: small">在下面加入：</span></p>
<p><span style="COLOR: rgb(0,0,0); FONT-SIZE: small"></span><span style="COLOR: rgb(0,0,0); FONT-SIZE: small">127.0.0.1 activate.adobe.com<br />127.0.0.1 practivate.adobe.com<br />127.0.0.1 ereg.adobe.com<br />127.0.0.1 activate.wip3.adobe.com<br />127.0.0.1 wip3.adobe.com<br />127.0.0.1 3dns-3.adobe.com<br />127.0.0.1 3dns-2.adobe.com<br />127.0.0.1 adobe-dns.adobe.com<br />127.0.0.1 adobe-dns-2.adobe.com<br />127.0.0.1 adobe-dns-3.adobe.com<br />127.0.0.1 ereg.wip3.adobe.com<br />127.0.0.1 activate-sea.adobe.com<br />127.0.0.1 wwis-dubc1-vip60.adobe.com<br />127.0.0.1 activate-sjc0.adobe.com</span></p>
<p><span style="COLOR: rgb(0,0,0); FONT-SIZE: small">然后用下面的号安装：</span></p>
<p><span style="COLOR: rgb(0,0,0); FONT-SIZE: small"></span><span style="COLOR: rgb(0,0,0); FONT-SIZE: small">1424-4827-8874-7387-0243-7331 (已验证可用)<br /></span><span style="COLOR: rgb(0,0,0); FONT-SIZE: small">1424-4938-3077-5736-3940-5640 (已验证可用)</span></p>
<div><span style="COLOR: rgb(0,0,0); FONT-SIZE: small">就可以正常使用了。</span></div>
<div><span style="COLOR: rgb(0,0,0); FONT-SIZE: small"></span></div>
<div><span style="COLOR: rgb(0,0,0); FONT-SIZE: small">如果想在flashbuider4.0上用4.5的SDK也一样:</span></div>
<div><span style="COLOR: rgb(0,0,0); FONT-SIZE: small">附上下载地址<a href="http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4.5" target="_blank">http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4.5</a></span></div>]]></content>
  <link rel="alternate" type="text/html" href="http://www.mockte.comrewrite.php/read-513.html" /> 
  <id>http://www.mockte.comrewrite.php/read-513.html</id> 
</entry>	
<entry>
  <title type="html"><![CDATA[云开发团队专用桌面壁纸简约型CD-TEAM_Desktop，适合Windows7]]></title>
  <author>
	 <name>李嘉</name>
	 <uri>http://www.mockte.comrewrite.php/read-512.html</uri>
	 <email>devinmoce@gmail.com</email>
  </author>
  <category term="" scheme="http://www.mockte.comrewrite.php/category-114.html" label="云开发资源" /> 
  <updated>2011-10-08 17:06:17</updated>
  <published>2011-10-08 17:06:17</published>
  <content type='text'><![CDATA[<p><a href="http://www.cd-team.com/" target="_blank" title="http://www.cd-team.com/" class="KeyWordStyle">云开发<img src="http://www.mockte.comimages/keyword.gif" border="0" alt=""/></a>团队专用桌面，适合Win7的简约型壁纸，我目前使用，团队里人有需要的可以下载，在文章最下面进行下载。</p>
<!--more-->
<p><img width="600" height="480" style="cursor:pointer;" onclick="open_img(&#39;http://www.mockte.comattachments/2011/3/2354087084.png&#39;)" alt="http://www.mockte.comattachments/2011/3/2354087084.png" src="http://www.mockte.com/http://www.mockte.comattachments/2011/3/2354087084.png" /></p>
<p><div align=left><img src="http://www.mockte.comimages/download.gif" alt="下载文件" style="margin:0px 2px -4px 0px"/><a href="http://www.mockte.comdownload.php?id=220">云开发团队专用桌面CDTEAM_Desktop01.zip</a>&nbsp;(747.26 KB , 下载:10次)</div></p>]]></content>
  <link rel="alternate" type="text/html" href="http://www.mockte.comrewrite.php/read-512.html" /> 
  <id>http://www.mockte.comrewrite.php/read-512.html</id> 
</entry>	
<entry>
  <title type="html"><![CDATA[CloudCMS Community云开发CMS社区Beta1版近期将发布]]></title>
  <author>
	 <name>李嘉</name>
	 <uri>http://www.mockte.comrewrite.php/read-511.html</uri>
	 <email>devinmoce@gmail.com</email>
  </author>
  <category term="" scheme="http://www.mockte.comrewrite.php/category-109.html" label="产品研发经验" /> 
  <updated>2011-10-02 14:14:27</updated>
  <published>2011-10-02 14:14:27</published>
  <content type='text'><![CDATA[<p>经过一段闭关式的研发，CloudCMS的轻量级版本，目前已经准备开始投入试用，该轻量级版本首先将作为社区版提供免费版本，将在国庆期间打包进行发布。作为Beta版，目前已经确认以近期一个WEB项目开始投入使用，该版本的试用将为后续正式版发布奠定基础。</p>
<!--more-->
<p><img width="600" height="400" align="middle" style="cursor:pointer;" onclick="open_img(&#39;http://www.mockte.comattachments/2011/3/2194226647.png&#39;)" alt="http://www.mockte.comattachments/2011/3/2194226647.png" src="http://www.mockte.com/http://www.mockte.comattachments/2011/3/2194226647.png" /></p>
<p>上面几幅截图即为<a href="http://www.cd-team.com/" target="_blank" title="http://www.cd-team.com/" class="KeyWordStyle">云开发<img src="http://www.mockte.comimages/keyword.gif" border="0" alt=""/></a>CMS社区版1.0界面，CloudCMS Community v1.0。</p>]]></content>
  <link rel="alternate" type="text/html" href="http://www.mockte.comrewrite.php/read-511.html" /> 
  <id>http://www.mockte.comrewrite.php/read-511.html</id> 
</entry>	
<entry>
  <title type="html"><![CDATA[5GHz频段的超级无线鼠标来了！雷柏3100p新产品选购推荐指南]]></title>
  <author>
	 <name>李嘉</name>
	 <uri>http://www.mockte.comrewrite.php/read-510.html</uri>
	 <email>devinmoce@gmail.com</email>
  </author>
  <category term="" scheme="http://www.mockte.comrewrite.php/category-58.html" label="购物指南" /> 
  <updated>2011-10-01 00:25:22</updated>
  <published>2011-10-01 00:25:22</published>
  <content type='text'><![CDATA[<p>一般普通的无线鼠标都是2.4GHz，而目前雷柏出了一款5GHz的无线鼠标产品，而且价格以99元低价出售。</p>
<p><strong>何为5GHz技术？</strong></p>
<p>普通的2.4GHz频段的无线传输技术，而5GHz即是采用5GHz频段无线传输的技术，它是一个比2.4GHz更高更开放的ISM频段。提供了三个工作范围，分别是5.15GHz~5.25GHz、5.25GHz~5.35GHz、以及5.725GHz。</p>
<p><strong>5GHz和2GHz的优势？</strong></p>
<p>5GHz的技术拥有更强的抗干扰性，提供更高的数据宽带。2.4G就这么宽，越来越多的设备加入终究会负荷不起。5.8G应运而生。其实早在路由器及电话，甚至冰箱等家电都有5.8G可寻，只是产品数量相比2.4G要少，而且很少很少，这样便可以理解为什么5.8G是一条畅通无阻的公路。借此，雷柏在今年推出了5.8G技术，引领业界。</p>
<!--more-->
<p><strong>设计小巧稳重</strong></p>
<p>雷柏 3100p 给人的感觉比较稳重，同时继承了之前3100的小巧的体积。比较适合商务使用。</p>
<table style="border: 1px solid rgb(230, 230, 230); width: 290px;" bgcolor="#ffffff" cellspacing="0" cellpadding="0">
    <tbody>
        <tr>
            <td align="center" rowspan="2">
            <div style="margin: 5px auto; width: 80px; height: 80px;"><a style="margin: 0px; padding: 0px; width: 80px; height: 80px; overflow: hidden;" target="_blank" href="http://s.click.taobao.com/t_8?e=7HZ6jHSTbIOVulQw9coo3a9qM9CWNDFM%2FxFy263k91wWzg%3D%3D&amp;p=mm_13018635_0_0"><img style="margin: 0px; border: currentColor;" alt="" src="http://image.taobao.com/bao/uploaded/http://img03.taobaocdn.com/bao/uploaded/i3/T1XD9nXnNBXXbfrf7Z_032326.jpg_sum.jpg" /></a></div>
            <div class="clearing"></div>
            </td>
            <td colspan="2"><a style="margin: 5px; width: 180px; height: 40px; color: rgb(0, 0, 255); line-height: 20px;" target="_blank" href="http://s.click.taobao.com/t_8?e=7HZ6jHSTbIOVulQw9coo3a9qM9CWNDFM%2FxFy263k91wWzg%3D%3D&amp;p=mm_13018635_0_0">RAPOO雷柏 3100P 5.8G无线光电鼠标 限量预售</a></td>
        </tr>
        <tr>
            <td nowrap="nowrap"> <span style="margin: 5px; color: rgb(204, 0, 0); line-height: 30px; font-weight: 600;">99.0元</span>&nbsp;</td>
            <td width="100" nowrap="nowrap"><a target="_blank" href="http://s.click.taobao.com/t_8?e=7HZ6jHSTbIOVulQw9coo3a9qM9CWNDFM%2FxFy263k91wWzg%3D%3D&amp;p=mm_13018635_0_0"><img name="" style="margin: 0px; border: currentColor; line-height: 24px; vertical-align: text-bottom; pandding: 0px;" alt="" src="http://img.alimama.cn/images/tbk/cps/fgetccode_btn.gif" /></a></td>
        </tr>
    </tbody>
</table>
<p> 有兴趣的朋友可以通过以上链接进行购买，以上仅为淘宝推广的真实网址，是淘宝商城雷柏旗舰店，也就是雷柏产品的淘宝商城网站的产品，放心选购，都为正品，如想获得更多的介绍，请看如下网址：<a target="_blank" href="http://tech.163.com/digi/11/0930/17/7F7G1VA9001618JV.html">http://tech.163.com/digi/11/0930/17/7F7G1VA9001618JV.html</a> </p>]]></content>
  <link rel="alternate" type="text/html" href="http://www.mockte.comrewrite.php/read-510.html" /> 
  <id>http://www.mockte.comrewrite.php/read-510.html</id> 
</entry>	
<entry>
  <title type="html"><![CDATA[Windows8和IE 10目前不支持Flash]]></title>
  <author>
	 <name>李嘉</name>
	 <uri>http://www.mockte.comrewrite.php/read-509.html</uri>
	 <email>devinmoce@gmail.com</email>
  </author>
  <category term="" scheme="http://www.mockte.comrewrite.php/category-4.html" label="WEB 技术" /> 
  <updated>2011-09-30 23:36:43</updated>
  <published>2011-09-30 23:36:43</published>
  <content type='text'><![CDATA[<p>总所周知，flash不被多数平板电脑和手机设备所支持，同样Windows8目前也不支持Flash。微软已经明确表示，Windows 8的Metro版本的IE 10浏览器不支持Adobe的flash插件。Adobe方面表示，这情况只是暂时的，未来几年，Flash仍是互联网体验的重要部分。Adobe正在针对ARM处理器的Windows 8系统开发新版本的Flash插件，并且打算在互联网内容发行和开发工具中引入新的互联网标准。</p>]]></content>
  <link rel="alternate" type="text/html" href="http://www.mockte.comrewrite.php/read-509.html" /> 
  <id>http://www.mockte.comrewrite.php/read-509.html</id> 
</entry>	
<entry>
  <title type="html"><![CDATA[SQL SERVER开发时一定不要写死数据库表的绝对路径“数据库名.所有者.表名”]]></title>
  <author>
	 <name>李嘉</name>
	 <uri>http://www.mockte.comrewrite.php/read-508.html</uri>
	 <email>devinmoce@gmail.com</email>
  </author>
  <category term="" scheme="http://www.mockte.comrewrite.php/category-101.html" label="项目经验" /> 
  <updated>2011-09-21 08:29:12</updated>
  <published>2011-09-21 08:29:12</published>
  <content type='text'><![CDATA[<p>这个例子要从很久以前的一个房地产OA项目说起，我做一些维护性的工作，在这个项目中，之前犯了一个毛病，就是在写SQL语句的时候，将数据库名称给限定死了，如下图所示：<!--more--></p>
<p><img width="600" height="437" align="middle" style="cursor:pointer;" onclick="open_img(&#39;http://www.mockte.comattachments/2011/3/1615036322.png&#39;)" alt="http://www.mockte.comattachments/2011/3/1615036322.png" src="http://www.mockte.com/http://www.mockte.comattachments/2011/3/1615036322.png" /></p>
<p>而后来数据库名称换掉了之后，程序就开始报错了，原因很简单，在程序里面写了SQL SERVER数据库表的绝对路径，即<strong> 数据库名.所有者.表名</strong>，这样做不仅数据库名被限定死了，所有者也被限定死了，很不可取，所以一般情况下只写表名，不要出现<strong> 数据库名.所有者.表名</strong> 的情况。</p>]]></content>
  <link rel="alternate" type="text/html" href="http://www.mockte.comrewrite.php/read-508.html" /> 
  <id>http://www.mockte.comrewrite.php/read-508.html</id> 
</entry>	
</feed>
