Monday, January 25, 2010

png.aspx.cs

using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;
using System.Drawing.Drawing2D;
using System.Drawing.Imaging;
using System.Drawing.Text;
using System.Drawing;
using System.Text;
//5_1_a_s_p_x.c_o_m

public partial class png : System.Web.UI.Page
{
private readonly string ImagePath = "Validator.jpg";
private static string gif = "";

protected void Page_Load(object sender, EventArgs e)
{

switch (Request.QueryString["aa"])
{
case "1":
gif = stxt();
Session["gif"]= stxt();
break;
case "2":
gif = GetRandomint();
Session["gif"]= GetRandomint();
break;
case "3":
gif = RndNum(3);
Session["gif"]= RndNum(3);
break;
default:
gif = RndNum(3);
Session["gif"]= GetRandomint();
break;
}

///创建Bmp位图
Bitmap bitMapImage = new System.Drawing.Bitmap(Server.MapPath(ImagePath));
Graphics graphicImage = Graphics.FromImage(bitMapImage);

///设置画笔的输出模式
graphicImage.SmoothingMode = SmoothingMode.HighSpeed;
///添加文本字符串
graphicImage.DrawString(gif, new Font("Arial", 20, FontStyle.Bold), SystemBrushes.WindowText, new Point(0, 0));

///设置图像输出的格式
Response.ContentType = "image/jpeg";

///保存数据流
bitMapImage.Save(Response.OutputStream, ImageFormat.Jpeg);

///释放占用的资源
graphicImage.Dispose();
bitMapImage.Dispose();
}
private String GetRandomint()
{
Random random = new Random();
return (random.Next(100000, 999999).ToString());
}
/**//*
此函数在汉字编码范围内随机创建含两个元素的十六进制字节数组,每个字节数组代表一个汉字,并将
四个字节数组存储在object数组中。
参数:strlength,代表需要产生的汉字个数
*/
public static object[] CreateRegionCode(int strlength)
{
//定义一个字符串数组储存汉字编码的组成元素
string[] rBase=new String [16]{"0","1","2","3","4","5","6","7","8","9","a","b","c","d","e","f"};

Random rnd=new Random();

//定义一个object数组用来
object[] bytes=new object[strlength];

/**//*每循环一次产生一个含两个元素的十六进制字节数组,并将其放入bject数组中
每个汉字有四个区位码组成
区位码第1位和区位码第2位作为字节数组第一个元素
区位码第3位和区位码第4位作为字节数组第二个元素
*/
for(int i=0;i {
//区位码第1位
int r1=rnd.Next(11,14);
string str_r1=rBase[r1].Trim();

//区位码第2位
rnd=new Random(r1*unchecked((int)DateTime.Now.Ticks)+i);//更换随机数发生器的种子避免产生重复值
int r2;
if (r1==13)
{
r2=rnd.Next(0,7);
}
else
{
r2=rnd.Next(0,16);
}
string str_r2=rBase[r2].Trim();

//区位码第3位
rnd=new Random(r2*unchecked((int)DateTime.Now.Ticks)+i);
int r3=rnd.Next(10,16);
string str_r3=rBase[r3].Trim();

//区位码第4位
rnd=new Random(r3*unchecked((int)DateTime.Now.Ticks)+i);
int r4;
if (r3==10)
{
r4=rnd.Next(1,16);
}
else if (r3==15)
{
r4=rnd.Next(0,15);
}
else
{
r4=rnd.Next(0,16);
}
string str_r4=rBase[r4].Trim();

//定义两个字节变量存储产生的随机汉字区位码
byte byte1=Convert.ToByte(str_r1 + str_r2,16);
byte byte2=Convert.ToByte(str_r3 + str_r4,16);
//将两个字节变量存储在字节数组中
byte[] str_r=new byte[]{byte1,byte2};

//将产生的一个汉字的字节数组放入object数组中
bytes.SetValue(str_r,i);

}

return bytes;

}
private string stxt()
{
Encoding gb = Encoding.GetEncoding("gb2312");

//调用函数产生4个随机中文汉字编码
object[] bytes = CreateRegionCode(3);

//根据汉字编码的字节数组解码出中文汉字
string str1 = gb.GetString((byte[])Convert.ChangeType(bytes[0], typeof(byte[])));
string str2 = gb.GetString((byte[])Convert.ChangeType(bytes[1], typeof(byte[])));
string str3 = gb.GetString((byte[])Convert.ChangeType(bytes[2], typeof(byte[])));

string txt = str1 + str2 + str3;
return txt;
}
///
/// 这个是使用文字,字母,数字混合
///

///
///
public String RndNum(int VcodeNum)
{
String Vchar = "0,1,2,3,4,5,6,7,8,9,A,B,C,D,E,F,G,H,I,J,K,L,M,N,O,P,Q,R,S,T,U,W,X,Y,Z,呵,哈,弹,簧,秤,嬉,戏";
String[] VcArray = Vchar.Split(',');
String VNum = "";
Random random = new Random();
for (int i = 1; i <= VcodeNum; i++)
{
int iNum = 0;
while ((iNum = Convert.ToInt32(VcArray.Length * random.NextDouble())) == VcArray.Length)
{
iNum = Convert.ToInt32(VcArray.Length * random.NextDouble());
}
VNum += VcArray[iNum];
}
return VNum;
}
}

uploadPhoto.aspx.designer.cs

//------------------------------------------------------------------------------
//
// 此代码由工具生成。
// 运行时版本: 2.0.50727.42
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将丢失。
//

//------------------------------------------------------------------------------

namespace PhotoPatchUpload
{


public partial class uploadPhoto
{

///
/// form1 控件。
///

///
/// 自动生成的字段。
/// 若要进行修改,请将字段声明从设计器文件移到代码隐藏文件。
///

protected global::System.Web.UI.HtmlControls.HtmlForm form1;
}
}

uploadPhoto.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;

namespace PhotoPatchUpload
{
public partial class uploadPhoto : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string value = "1";
if (!String.IsNullOrEmpty(Request["uploadid"]))
{
value = Request["uploadid"].ToString();
}

HttpPostedFile oFile = Request.Files["file"];
if (oFile == null || oFile.ContentLength < 1 || oFile.ContentLength > 1024 * 1024)
{
string js = "window.parent.document.getElementById('preTitle{0}').innerText = '上传失败';this.location.href='about:blank';";

Page.ClientScript.RegisterStartupScript(this.GetType(), "", string.Format(js, value), true);
}
else
{
try
{
string cFileName = GetRandomFileName(oFile.FileName);
Stream fs = oFile.InputStream;//51^aspx

byte[] by = new byte[1024];//分块读取

string jsLoad = "";

string folderPath = Server.MapPath("~/UploadFloder/");
string filePath = folderPath + cFileName;
if (!Directory.Exists(folderPath))
{
Directory.CreateDirectory(folderPath);
}

FileStream fStream = new FileStream(filePath, FileMode.Create);
int osize = fs.Read(by, 0, by.Length);
int totalNum = (int)fs.Length / by.Length;
totalNum++;
int i = 0;

while (osize > 0)
{

if (osize > 0)
{
fStream.Write(by, 0, osize);
string msg = "已经上传" + osize + "数据";
MyProgressBar.Roll(msg, ((i + 1) * 100 / totalNum), value);
}
osize = fs.Read(by, 0, by.Length);

jsLoad = "已经上传" + osize + "数据";

//fStream.Close();
//fStream.Dispose();
//string jsBlock = "";

//System.Web.HttpContext.Current.Response.Write(jsBlock);
//System.Web.HttpContext.Current.Response.Flush();
}
fStream.Close();
fStream.Dispose();
string jsBlock = "";

System.Web.HttpContext.Current.Response.Write(jsBlock);
System.Web.HttpContext.Current.Response.Flush();


}
catch
{
string js = "window.parent.document.getElementById('preTitle{0}').innerText = '上传失败';this.location.href='about:blank';";
Page.ClientScript.RegisterStartupScript(this.GetType(), "", string.Format(js, value), true);
}

}

}
///
/// 取得随机文件名
///

///
///
public string GetRandomFileName(string filename)
{
string[] files = filename.Split('.');
string exfilename = "." + files.GetValue(files.Length - 1);

char[] s = new char[]{'0','1', '2','3','4','5','6','7','8','9','A'
,'B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q'
,'R','S','T','U','V','W','X','Y','Z'};
string num = "";
Random r = new Random();
for (int i = 0; i < 4; i++)
num += s[r.Next(0, s.Length)].ToString();//51&aspx
DateTime time = DateTime.Now;
string name = time.Year.ToString()
+ time.Month.ToString().PadLeft(2, '0')
+ time.Day.ToString().PadLeft(2, '0')
+ time.Hour.ToString().PadLeft(2, '0')
+ time.Minute.ToString().PadLeft(2, '0')
+ time.Second.ToString().PadLeft(2, '0')
+ num + exfilename;
return name;
}
}
}

MyProgressBar.cs

Microsoft Visual Studio Solution File, Format Version 10.00
# Visual Studio 2008
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PhotoPatchUpload", "PhotoPatchUpload.csproj", "{2B8862EE-979C-45F8-BBAA-7B701C19EA28}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{2B8862EE-979C-45F8-BBAA-7B701C19EA28}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2B8862EE-979C-45F8-BBAA-7B701C19EA28}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2B8862EE-979C-45F8-BBAA-7B701C19EA28}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2B8862EE-979C-45F8-BBAA-7B701C19EA28}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

Default.aspx.cs

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace PhotoPatchUpload
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
}
}