asp.net ajax异步上传控件 - .NET技术 / ASP.NET
asp.net ajax有异步上传控件吗?如何使用?
我这里刚好有一个, 我给你下载地址吧,
http://www.ttsuppliers.com/images/tempimage/QuickUpload.rar
楼主下载就行了.
有没有一些带进度条的(多文件上传,带进度条)?
可以AsyncFileUpload控件
当然,要先下载AjaxControlToolkit 工具包
至于多文件上传,要自己编写咯~
加油~
ajaxfileupload
C# code:
function ajaxFileUpload()
{
$.ajaxFileUpload
(
{
url:'imageFile.ashx?Param=uploadfile&thumbtype='+$("#chbox").attr('checked'),
secureuri:false,
fileElementId:'fileToUpload',
dataType: 'json',
success: function (data, status)
{
if(typeof(data.error) != 'undefined')
{
if(data.error != '')
{
alert(data.error);
}else
{
alert(data.msg);
ajaximgList(data.filepath);
}
}
},
error: function (data, status, e)
{
alert(data.msg);
alert(e);
}
}
相关问答:
http://www.zgjhjy.com/Test/PrimaryTest/Index.aspx
就是类似以上的在线测试系统,需要有一个后台的,语言是asp的,数据库是access的,还需要能在后台对信息进行添删改查的。谢谢各位了。。。
程序真的很多,不知 ......
有一个类
class adc
{
dim a,b,c
}
如何在另外一个类中取得类成员及成员个数
class getmenber
{
dim menbers()
function getmenbers(resclass)
'res为一未知类
'getmenber ......
C# code:
SqlConnection conn = CsDB.sqlcon();
SqlDataAdapter da = new SqlDataAdapter("select fwCoding from bjmuma_fwCoding where OrderNumber='" + Order + & ......
Microsoft JET Database Engine '80040e07'
标准表达式中数据类型不匹配。
\wwwroot\update.asp, line 20
--------------------------------------------------------------------------------
Ho ......