您应该知道的是,您无法使用标准 FileUpload 控件检查文件上传的状态。您可以做的是将文件上传到服务器上,然后使用 ODBC 连接到它,并开始异步读取和插入数据库中的行(通过向页面发出 ajax 请求或使用脚本服务)。
就进度条而言,您应该简单地使用 CSS 进度条(您可以在以下位置找到一个简单的示例:http ://css-tricks.com/examples/ProgressBars/ )。
然后,您应该使用可以从服务器返回进度状态的方法构建脚本服务(使用 Web 服务):
您的 *.asmx 文件应包含以下内容:
[WebMethod]
public int GetStatus()
{
int progress = 0; // in percents
// your server-side code here
return progress;
}
您的 aspx 页面应包含以下内容:
<asp:ScriptManager runat="server" ID="ScriptManager">
<Services>
<asp:ServiceReference Path="~/services/import.asmx" InlineScript="false" />
</Services>
</asp:ScriptManager>
然后,您应该能够定期从 JavaScript 调用该方法(例如,每秒使用 setTimeout)并使用简单的 JavaScript 或 jQuery 更新进度条宽度:
var tout, service;
function UpdateStatus() {
if (tout != null)
clearTimeout(tout);
if (service == null)
service = new namespace.here.serice_class_here();
service.GetStatus(onSuccess, onFailure);
}
function onSuccess(result) {
// update the width of the progress with result (the integer value of the progress)
progress_bar.style.width = percent + "%";
// call the method again
tout = setTimeout("UpdateStatus()", 1000);
}
function onFailure(error) {
alert(error.get_message());
}
您可以扩展您的 onSuccess JavaScript 函数,当进度完成时(返回值为 100%),您可以根据需要将用户重定向到另一个页面或显示信息或按钮。
我希望这有帮助!