Changing the cursor in ASP.NET while loading doesn't work without a JS alert

前端 未结 2 1478
情书的邮戳
情书的邮戳 2020-12-03 22:40

I want to change the cursor to an hourglass in my asp.net application to let my users know that the process is running. I searched for an answer and was advised to use JavaS

相关标签:
2条回答
  • 2020-12-03 23:28

    Is it an Ajax-Webapp? Then you could use an UpdateProgress Control to show while the user is waiting till import finished.

    0 讨论(0)
  • 2020-12-03 23:41

    How about this:

    btnImport.Attributes.Add("onclick", "hourglass();");
    
    0 讨论(0)
提交回复
热议问题