
[随笔分类]程序
wangdetian168
最好就是想干什么就做什么
展开
-
c# md5函数
/// <summary> /// 生成MD5加密字符串 /// </summary> /// <param name="str"></param> /// <param name="code"></param> /// <returns>2010-10-18 11:22:00 · 95 阅读 · 0 评论 -
C# post 提交函数
public string GetPost(string url, params string[] data) { string tempMessage = ""; System.Net.WebClient WebClientObj = new System.Net.WebClient(); System.Colle...2010-10-18 11:41:00 · 206 阅读 · 0 评论 -
动易短信接口
using System;using System.IO;using System.Net;using System.Security.Cryptography;using System.Text;using System.Web;namespace Report{ /// <summary> /// 结构名:PESMS /// 编 写:张远强 /// 版 ...2010-10-18 22:15:00 · 135 阅读 · 0 评论 -
导出excel函数代码C#
public static void ExportToExcel(DataTable dt, string fileName) { //在做这些前,将Excl添加到引用中来!! Excel.Application excel = new Excel.Application(); //如果系统是Excl2007,添...2010-10-22 01:48:00 · 114 阅读 · 0 评论 -
C#外挂类
using System;using System.Collections.Generic;using System.Text;using System.Runtime.InteropServices;using System.Diagnostics;using System.Management;namespace sendkey{public class key{const uint PROC...2010-10-26 15:46:00 · 147 阅读 · 0 评论 -
php 301重定向
PHP:php 301重定向header("HTTP/1.1 301 Moved Permanently");header("Location:http://www.goudiannao.com/");exit();2010-11-20 10:39:00 · 111 阅读 · 0 评论