摘要:
代码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 阅读全文
摘要:
JavaScript高级培训-自定义对象 (原文:http://www.ccvita.com/94.html) 一,概述 在Java语言中,我们可以定义自己的类,并根据这些类创建对象来使用,在Javascript中,我们也可以定义自己的类,例如定义User类、Hashtable类等等。 目前在Javascript中,已经存在一些标准的类,例如Date、Array、RegExp、String、Math、Number等等,这为我们编程提供了许多方便。但对于复杂的客户端程序而言,这些还远远不够。 与Java不同,Java2提供给我们的标准类很多,基本上满足了我们的编程需求,但是Javascript 阅读全文
摘要:
有MVC 富文本编辑器 研究的朋友可以联系我QQ:564064202 阅读全文
摘要:
/Files/humble/ext.qin.zip 阅读全文
摘要:
$.extend({ AjaxForm: function (action, formID, callback) { var form = $("#" + formID); form.attr("action", action); form.attr("method", "post"); $("#callbackmethod").remove(); form.append("<input i... 阅读全文
摘要:
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... 阅读全文
摘要:
#include "stdafx.h" #include <iostream> using namespace std; template<typename T> struct Node { T value; Node* next; Node... 阅读全文
摘要:
#include "stdafx.h" #include <iostream> using namespace std; template<typename T> struct Node { T value; Node* next; Node... 阅读全文
只有注册用户登录后才能阅读该文。 阅读全文
摘要:
public static void Main(string[] args) { bool t=false; ... 阅读全文