在asp.net怎么使用Me.Cursor=Cursors.WaitCursor,也就是改变光标形状?

解决方案 »

  1.   

    <INPUT type="button" value="Hand" onclick="document.body.style.cursor = 'hand';">
    <INPUT type="button" value="Normal" onclick="document.body.style.cursor = 'normal';">
      

  2.   

    通过C#输出则是:
    Page.RegisterStartupScript("hand","<script>document.body.style.cursor = 'hand';</script>");
      

  3.   

    <INPUT type="button" value="Hand" onclick="document.body.style.cursor = 'hand';">
    <INPUT type="button" value="Normal" onclick="document.body.style.cursor = 'normal';">
      

  4.   

    <INPUT type="button" value="Hand" onclick="document.body.style.cursor = 'hand';">