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