资源简介
里面汇集了很多asp.net网页常用方法,无刷屏弹出对话框,des加解密,下载上传方法等
代码片段和文件信息
using System;
using System.Data;
using System.Configuration;
using System.Collections.Generic;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.IO;
using System.Text.Regularexpressions;
using System.Security.Cryptography;
using System.Text;
///
///Utils 的摘要说明
///
public static class Utils
{
///
/// md5加密
///
/// 要加密的字符串
/// 字符串
public static string md5(string Str)
{
return FormsAuthentication.HashPasswordForStoringInConfigFile(Str “md5“);
}
///
/// DES加密
///
public static string Key = “DKMAB5DE“;//加密密钥必须为8位
///
/// 密码加密
///
//加密算法
public static string MD5Encrypt(string pToEncrypt)
{
评论
共有 条评论