摘要: http://www.tiobe.com/index.php/content/paperinfo/tpci/index.htmlTIOBE Programming Community Index for February 2011February Headline: C# and Python are closing the gap on PHP The rise of C# and Python are continuing in 2011. Both languages scored another all-time high this month and are now busy wit 阅读全文
posted @ 2011-03-09 13:04 异地远程联网技术 阅读(466) 评论(2) 推荐(0)
摘要: function ProvinceAndCities{var _code=[{"Code":"110000","Name":"北京市"},{"Code":"110100","Name":"市辖区"},{"Code":"110101","Name":"东城区"},{"Code":"110102","Name&q 阅读全文
posted @ 2011-03-08 14:42 异地远程联网技术 阅读(1644) 评论(1) 推荐(0)
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2011-03-04 15:45 异地远程联网技术 阅读(1335) 评论(18) 推荐(2)
摘要: 代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--usingSystem;usingSystem.Configuration;usingSystem.Collections.Generic;usingSystem.Text;usingSystem.Net.Mail;usingSystem.IO;usingSystem.Drawing;namespaceUtility{publicclassImageHelper{publicstaticImage 阅读全文
posted @ 2010-12-20 16:21 异地远程联网技术 阅读(331) 评论(0) 推荐(0)
摘要: JavaScript高级培训-自定义对象 (原文:http://www.ccvita.com/94.html) 一,概述 在Java语言中,我们可以定义自己的类,并根据这些类创建对象来使用,在Javascript中,我们也可以定义自己的类,例如定义User类、Hashtable类等等。 目前在Javascript中,已经存在一些标准的类,例如Date、Array、RegExp、String、Math、Number等等,这为我们编程提供了许多方便。但对于复杂的客户端程序而言,这些还远远不够。 与Java不同,Java2提供给我们的标准类很多,基本上满足了我们的编程需求,但是Javascript 阅读全文
posted @ 2010-12-05 16:14 异地远程联网技术 阅读(229) 评论(0) 推荐(0)
摘要: 有MVC 富文本编辑器 研究的朋友可以联系我QQ:564064202 阅读全文
posted @ 2010-12-04 19:21 异地远程联网技术 阅读(1088) 评论(4) 推荐(0)
摘要: /Files/humble/ext.qin.zip 阅读全文
posted @ 2010-11-28 13:54 异地远程联网技术 阅读(159) 评论(0) 推荐(0)
摘要: $.extend({ AjaxForm: function (action, formID, callback) { var form = $("#" + formID); form.attr("action", action); form.attr("method", "post"); $("#callbackmethod").remove(); form.append("<input i... 阅读全文
posted @ 2010-11-21 15:07 异地远程联网技术 阅读(723) 评论(0) 推荐(0)
摘要: http://files.cnblogs.com/humble/jquery.form.jsfunction ajaxSubmit(action, formID,hasFile) { var options = { url:action, dataType: "json", type: 'POST', success: function (json) { alert(json); } }; var... 阅读全文
posted @ 2010-11-20 20:40 异地远程联网技术 阅读(757) 评论(0) 推荐(0)
摘要: #include "stdafx.h" #include <iostream> using namespace std; template<typename T> struct Node {     T value;     Node* next;     Node... 阅读全文
posted @ 2010-08-02 18:38 异地远程联网技术 阅读(597) 评论(0) 推荐(0)