目前我正在使用一张忙碌的图片,以显示我通过使用asp.net制作的网站正在进行的工作,这工作正常,但我想知道是否可以这样做使用c#以便我可以运行另一个运行的类来显示程序正在运行
$().ready(function () {
});
function confirmit() {
if ($.browser.msie) {
$('#progressBar').html('<img width="120px" height="120px" alt="Please wait...." style="display: block;" id="busyimage" src="/Charter/images/ajax-loader-circle.gif">');
}
$('#busyimage').show("slow");
$('#Confirm_btn').hide("slow");
$('#error').text("");
$('#aspnetForm').css('cursor', 'wait');
//alert('radio ' + $("input[id=formatOfReport_1]:checked", '#aspnetForm').val());
if(document.getElementById('formatOfReport_0').checked) //
{
window.setTimeout(hideThem, 7000); // 7 sec
}
if (document.getElementById('formatOfReport_1').checked) //
{
window.setTimeout(hideThem, 15000); // 15 sec
}
}