请问使用extjs如何上串图片到数据库中啊

asp.net
sql server2000

谢谢

先看一看上传文件这个例子

上传表单(Upload Forms)[ASP.NET版]

http://extjs.org.cn/index.php?q=node/188

我就是看这个例子的

我就是看这个例子的啊

可是数据库怎么操作啊
Dim ifile As Integer = 0
Dim postedFile As HttpPostedFile
Try
For ifile = 0 To files.Count - 1
postedFile = files(ifile)
Next

Catch ex As Exception
Throw ex
End Try

Dim intImageSize As Integer
Dim strImageType As String
Dim ImageStream As Stream
intImageSize = postedFile.ContentLength
strImageType = postedFile.ContentType
ImageStream = postedFile.InputStream
Dim ImageContent(intImageSize) As Byte
Dim intStatus As Integer
intStatus = ImageStream.Read(ImageContent, 0, intImageSize)

是这样么

VB的不太懂

存文件到数据库
只需把例子的保存文件到目录改为到数据库:
上传表单(Upload Forms)[ASP.NET版]
http://extjs.org.cn/index.php?q=node/188

以下是搜索结果一篇文章,希望对你有所帮助。
用ASP.NET创建和保存图片到数据库
http://www.cnblogs.com/rippleyong/archive/2005/06/22/31977.html