这个很简单啊,数据库字段设为image.在可户端上传的时候用流的方式读取,其他的操作跟别的类型的没多少区别.以下有一个例子:
public void UpPic()
{
HttpPostedFile upFile = File1.PostedFile;//HttpPostedFile对象,用来读取上传文档的属性
int fileLength = upFile.ContentLength;//记录文件的长度
byte[] fileByte = new byte[fileLength];//用file的长度来初始化一个字节数组存储临时的文件
FileStream fs = new System.IO.FileStream(upFile.FileName, FileMode.Open, FileAccess.Read);
BinaryReader br = new BinaryReader(fs);
byte[] wordfile= br.ReadBytes((int)fs.Length);
//然后把wordfile当作普通的参数传过去就可以了,应该会吧!
}
雄哥
|
菜鸟二级
|园豆:220
|
2008-07-11 10:30