帮帮我解决一下那几个问题吧!!!
我上传的也是MP3,2M多一点儿还是不行,上传的是ACCESS数据库.下面是我的代码,哥哥,姐姐们帮看看:
objconn.connectionstring="provider=microsoft.jet.oledb.4.0;" & "data source=" & server.mappath("db1.mdb")
objconn.open()
sqlstring="select * from imagetable where imagename='"& mydrop.selecteditem.text &"'"
objcomm=new oledbcommand(sqlstring,objconn)
objcmd=new oledbdataadapter(objcomm)
objcmd.fill(ds,"imagetypetable")
dim mytable as datatable=ds.tables("imagetypetable")
if mytable.rows.count<>0 then
response.contenttype=mytable.rows(0).item("imagetype")
response.binarywrite((ctype(mytable.rows(0)("imagedata"),byte())))
end if