上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页
摘要: 视频教程1: http://pan.baidu.com/share/link?shareid=2533368977&uk=3289148388视频教程2: http://pan.baidu.com/share/link?shareid=2539153287&uk=3289148388视频教程3: http://pan.baidu.com/share/link?shareid=2545043907&uk=3289148388 阅读全文
posted @ 2013-06-09 15:51 yjwpop 阅读(175) 评论(0) 推荐(0)
摘要: <%@ WebHandler Language="C#" Class="UploadHandler" %>using System;using System.IO;using System.Web;using System.Data.SqlClient;public class UploadHandler : IHttpHandler { public void ProcessRequest(HttpContext context) { context.Response.ContentType = "text/plain" 阅读全文
posted @ 2013-06-09 15:46 yjwpop 阅读(729) 评论(1) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Messaging;namespace MSMQ{ public partial class MsMq { //通过Create方法创建使用指定路径的新消息队列 /**/ /// <summary> /// ... 阅读全文
posted @ 2013-06-09 15:33 yjwpop 阅读(551) 评论(0) 推荐(0)
摘要: \mongo\bin>mongod --dbpath=d:\mongodb\data--------------------启动mongodb服务--------------------------mongod --logpath mongodb/logs/mongodb.log --logappend --dbpath mongodb/data --directoryperdb --serviceName MongoDB --install >mongod --dbpath=d:\mongodb\data --logpath=d:\mongodb\logs\mongodb.log 阅读全文
posted @ 2013-06-09 15:19 yjwpop 阅读(1231) 评论(0) 推荐(0)
摘要: 实现步骤: 1、从数据库取出要导出到word上的数据,用C#操作生成一个数据XMl文件,例如:a.xml<?xml version="1.0" encoding="gb2312"?><History> <Customer> <CustomerName>1111 </CustomerName> <CustomerAddress>345345345</CustomerAddress> <CustomerTel>453453453435</CustomerTe 阅读全文
posted @ 2013-06-09 14:36 yjwpop 阅读(773) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using org.in2bits.MyXls;using System.Data;using System.Text.RegularExpressions;using System.IO;using NPOI;using NPOI.HPSF;using NPOI.HSSF;using NPOI.HSSF.UserModel;using NPOI.HSSF.Util;using NPOI.POIFS;using NPOI.Util; 阅读全文
posted @ 2013-06-09 14:06 yjwpop 阅读(573) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.IO;using NPOI.SS.UserModel;using NPOI.HSSF.UserModel;using System.Data;using System.ComponentModel;using System.Web.Mvc;namespace Util{ public class ExcelHelper { public static class ExportTool... 阅读全文
posted @ 2013-06-09 14:04 yjwpop 阅读(1627) 评论(0) 推荐(0)
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Text.RegularExpressions;using System.Collections;namespace Util{ public class HtmlDiff { private StringBuilder content; private string oldText, newText; private string[] oldWords... 阅读全文
posted @ 2013-06-09 13:58 yjwpop 阅读(673) 评论(2) 推荐(1)
摘要: 原文请看:http://www.codeproject.com/Articles/44395/Conversion-of-PDF-to-EPUB-Format源代码:http://pan.baidu.com/share/link?shareid=2328428490&uk=3289148388 阅读全文
posted @ 2013-06-09 13:22 yjwpop 阅读(478) 评论(0) 推荐(0)
摘要: 数组和function 都是对象,现在熟悉JS基础Array对象,有兴趣的同学一起来复习下吧。array.pop : 删除数组内的最后一个对象array.shift :删除数组内的第一个对象array.join: 数组内元素弄成字符串插入页面array.reverse : 数组内元素倒置array.concat : 数组合并,但是谁与谁合并,要注意顺序array.toString : 数组直接转为字符串,不再是对象了array.valueOf : 显示原始的值,里面有什么东西array.sort : 以ascii代码来排列先后顺序,但是数字不能用sort去排列。要排序请往下看,有例子哦。arr 阅读全文
posted @ 2013-06-09 13:04 yjwpop 阅读(400) 评论(0) 推荐(1)
上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页