busy mouse cursor when page loading in ASP.NET [closed]

╄→尐↘猪︶ㄣ 提交于 2020-01-11 12:12:06

问题


I just want to inform the user that the page is busy when it is loading or the action is being carried in the background or when the postback occurs by just changing the mouse cursor to busy.

The cursor should turn to normal pointer when the page is completely loaded in ASP.Net.


回答1:


try this from setHourglass

With ASP.NET pages this is a bit more of a problem to do. You need to employ a little JavaScript.

Add this JavaScript between the tags on your ASP.NET web page:

Code:

 function setHourglass()
 {
   document.body.style.cursor = 'wait';
 }

Now you have to tell the web form to run the JavaScript funciton when a post back happens.

Add this to your tag:

Code:

     <body onbeforeunload="setHourglass();" onunload="setHourglass();">

Also try this Hourglass-cursor-for-Web-ASP-NET-pages

Now to set it back to normal do this

       document.body.style.cursor='default';



回答2:


This helped me. However, it was for the ajax updatePanel. It may give you some ideas. http://encosia.com/improved-progress-indication-with-aspnet-ajax/



来源:https://stackoverflow.com/questions/9696521/busy-mouse-cursor-when-page-loading-in-asp-net

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!