<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/jxncwzb" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/jxncwzb" type="application/rss+xml"></fs:self_link><lastBuildDate>Fri, 13 Nov 2009 10:02:00 GMT</lastBuildDate><title>jxncwzb的专栏</title><description>CSDN博客聚合服务</description><link>http://blog.csdn.net/blogrss.aspx?username=jxncwzb</link><item><title>发布一个 JavaScript 右击菜单 支持 ie678,Firefox,Safari</title><link>http://blog.csdn.net/jxncwzb/archive/2009/11/13/4808486.aspx</link><description>&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/**
 * @author wangzhongbin
 * 2009-08-20
 */
var _menus = new Array();//注要解决一个页面有多个菜单
var _current_menu_id = null;
/**
 * 上下文菜单
 * @param {Object} object 显示菜单的对象
 * @param {Object} menu 菜单对象
 */
function CreateMenu(object, menu){
    var _object = this;
	
	_object.iframe_id = null;
    _object.onHide = null;
    _object.onContext = null;
	_object.menu = menu;
	
    menu.style.display = 'none';
    menu.style.zIndex = '1000000';
    menu.style.listStyleTy&lt;img src=&quot;http://www1.feedsky.com/t1/296151327/jxncwzb/csdn.net/s.gif?r=http://blog.csdn.net/jxncwzb/archive/2009/11/13/4808486.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/jxncwzb/296151327/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/jxncwzb/296151327/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 13 Nov 2009 18:02:00 +0800</pubDate><author>魔鹰</author><guid isPermaLink="false">http://blog.csdn.net/jxncwzb/archive/2009/11/13/4808486.aspx</guid><dc:creator>魔鹰</dc:creator><fs:srclink>http://blog.csdn.net/jxncwzb/archive/2009/11/13/4808486.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/jxncwzb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/jxncwzb/~1190109/296151327/1190088</fs:itemid></item><item><title>php操作mysql返回多个结果集</title><link>http://blog.csdn.net/jxncwzb/archive/2009/11/13/4808421.aspx</link><description>有的时候你可能会用到查一次查询返回若干个结果，在php里现在不是什么难题了。$rows = array ();$db = new mysqli('127.0.0.1','root','123456','user');if (mysqli_connect_errno()){	$this-&gt;message('Can not connect to MySQL server');}$db-&gt;query(&quot;SET NAMES UTF8&quot;);$query = &quot;select * from `user`.`user` limit 0, 50;&quot;;$query .= &quot;select count(0) as `count` from `user`.`user`&quot;;if($db-&gt;multi_query($query)){	do{		if($result = $db-&gt;store_result()){			while ($row = $result-&gt;fetch_assoc()){				array_push($rows&lt;img src=&quot;http://www1.feedsky.com/t1/296151328/jxncwzb/csdn.net/s.gif?r=http://blog.csdn.net/jxncwzb/archive/2009/11/13/4808421.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/jxncwzb/296151328/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/jxncwzb/296151328/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 13 Nov 2009 17:39:00 +0800</pubDate><author>魔鹰</author><guid isPermaLink="false">http://blog.csdn.net/jxncwzb/archive/2009/11/13/4808421.aspx</guid><dc:creator>魔鹰</dc:creator><fs:srclink>http://blog.csdn.net/jxncwzb/archive/2009/11/13/4808421.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/jxncwzb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/jxncwzb/~1190109/296151328/1190088</fs:itemid></item><item><title>php调用mysql存储过程返回多个结果集的处理</title><link>http://blog.csdn.net/jxncwzb/archive/2009/11/13/4807991.aspx</link><description> 返回一个结果全世界都知道怎么处理，关键是返回多个结果集就不好办了，下面有一解决办法存储过程代码DELIMITER $$;DROP PROCEDURE IF EXISTS `test`.`sp_test`$$CREATE PROCEDURE `test`.`sp_test` ()BEGIN    select * from `user`.`user` limit 0, 50;    select count(0) as `count` from `user`.`user`;END$$DELIMITER ;$$php 代码$rows = array ();$db = new mysqli('127.0.0.1','root','123456','user');if (mysqli_connect_err&lt;img src=&quot;http://www1.feedsky.com/t1/296151329/jxncwzb/csdn.net/s.gif?r=http://blog.csdn.net/jxncwzb/archive/2009/11/13/4807991.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/jxncwzb/296151329/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/jxncwzb/296151329/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 13 Nov 2009 16:34:00 +0800</pubDate><author>魔鹰</author><guid isPermaLink="false">http://blog.csdn.net/jxncwzb/archive/2009/11/13/4807991.aspx</guid><dc:creator>魔鹰</dc:creator><fs:srclink>http://blog.csdn.net/jxncwzb/archive/2009/11/13/4807991.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/jxncwzb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/jxncwzb/~1190109/296151329/1190088</fs:itemid></item><item><title>windows 下 php 环境配置</title><link>http://blog.csdn.net/jxncwzb/archive/2008/09/24/2971904.aspx</link><description>windows 下配置 apache+php;windows 下配置 IIS+php&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/jxncwzb/296151330/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/jxncwzb/296151330/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 24 Sep 2008 09:59:00 +0800</pubDate><author>魔鹰</author><guid isPermaLink="false">http://blog.csdn.net/jxncwzb/archive/2008/09/24/2971904.aspx</guid><dc:creator>魔鹰</dc:creator><fs:srclink>http://blog.csdn.net/jxncwzb/archive/2008/09/24/2971904.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/jxncwzb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/jxncwzb/~1190109/296151330/1190088</fs:itemid></item><item><title>php实现google样式的分页</title><link>http://blog.csdn.net/jxncwzb/archive/2008/09/05/2884196.aspx</link><description>php实现google样式的分页,php分页,google分页模式&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/jxncwzb/296151331/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/jxncwzb/296151331/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 05 Sep 2008 10:47:00 +0800</pubDate><author>魔鹰</author><guid isPermaLink="false">http://blog.csdn.net/jxncwzb/archive/2008/09/05/2884196.aspx</guid><dc:creator>魔鹰</dc:creator><fs:srclink>http://blog.csdn.net/jxncwzb/archive/2008/09/05/2884196.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/jxncwzb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/jxncwzb/~1190109/296151331/1190088</fs:itemid></item><item><title>mysql 通用存储过程分页 海量数据分页</title><link>http://blog.csdn.net/jxncwzb/archive/2008/09/05/2883467.aspx</link><description>mysql 通用存储过程分页,mysql 海量数据分页&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/jxncwzb/296151332/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/jxncwzb/296151332/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 05 Sep 2008 09:11:00 +0800</pubDate><author>魔鹰</author><guid isPermaLink="false">http://blog.csdn.net/jxncwzb/archive/2008/09/05/2883467.aspx</guid><dc:creator>魔鹰</dc:creator><fs:srclink>http://blog.csdn.net/jxncwzb/archive/2008/09/05/2883467.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/jxncwzb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/jxncwzb/~1190109/296151332/1190088</fs:itemid></item><item><title>解决PHP调存储过程问题</title><link>http://blog.csdn.net/jxncwzb/archive/2008/08/27/2837246.aspx</link><description>解决PHP调存储过程问题 PHP调存储过程后不能执行其它SQL语句或执行其它语句出现Call to a member function fetch_array() on a non-object错误&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/jxncwzb/296151333/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/jxncwzb/296151333/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 27 Aug 2008 12:23:00 +0800</pubDate><author>魔鹰</author><guid isPermaLink="false">http://blog.csdn.net/jxncwzb/archive/2008/08/27/2837246.aspx</guid><dc:creator>魔鹰</dc:creator><fs:srclink>http://blog.csdn.net/jxncwzb/archive/2008/08/27/2837246.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/jxncwzb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/jxncwzb/~1190109/296151333/1190088</fs:itemid></item><item><title>用XmlTextWriter追加记录</title><link>http://blog.csdn.net/jxncwzb/archive/2007/07/31/1719040.aspx</link><description>用XmlTextWriter追加记录&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/jxncwzb/296151334/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/jxncwzb/296151334/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 31 Jul 2007 13:23:00 +0800</pubDate><author>jxncwzb</author><guid isPermaLink="false">http://blog.csdn.net/jxncwzb/archive/2007/07/31/1719040.aspx</guid><dc:creator>jxncwzb</dc:creator><fs:srclink>http://blog.csdn.net/jxncwzb/archive/2007/07/31/1719040.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/jxncwzb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/jxncwzb/~1190109/296151334/1190088</fs:itemid></item><item><title>c#线程间的通信</title><link>http://blog.csdn.net/jxncwzb/archive/2007/05/08/1600381.aspx</link><description>c#线程间的通信&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/jxncwzb/296151335/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/jxncwzb/296151335/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 08 May 2007 13:03:00 +0800</pubDate><author>jxncwzb</author><guid isPermaLink="false">http://blog.csdn.net/jxncwzb/archive/2007/05/08/1600381.aspx</guid><dc:creator>jxncwzb</dc:creator><fs:srclink>http://blog.csdn.net/jxncwzb/archive/2007/05/08/1600381.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/jxncwzb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/jxncwzb/~1190109/296151335/1190088</fs:itemid></item><item><title>.NET Runtime version 2.0.50727.42 - 执行引擎错误(7A05E2B3) (80131506)</title><link>http://blog.csdn.net/jxncwzb/archive/2007/04/13/1563478.aspx</link><description>日志信息:
.NET Runtime version 2.0.50727.42 - 执行引擎错误(7A05E2B3) (80131506)
Faulting application w3wp.exe, version 6.0.3790.1830, stamp 42435be1, faulting module mscorwks.dll, version 2.0.50727.42, stamp 4333e7ec, debug? 0, fault address 0x000cd1fa.
出现这样的问题后应用程序池都会出现被自动禁用访问站点时会出现&quot;Service Unavailable&quot;错误信息&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/jxncwzb/296151336/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/jxncwzb/296151336/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 13 Apr 2007 14:50:00 +0800</pubDate><author>jxncwzb</author><guid isPermaLink="false">http://blog.csdn.net/jxncwzb/archive/2007/04/13/1563478.aspx</guid><dc:creator>jxncwzb</dc:creator><fs:srclink>http://blog.csdn.net/jxncwzb/archive/2007/04/13/1563478.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/jxncwzb/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/jxncwzb/~1190109/296151336/1190088</fs:itemid></item></channel></rss>