1

目前我正在使用一个繁忙的图像来显示我通过使用 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   
    }

}
4

0 回答 0