Not logged in - Login

Setting the mouse pointer to be the wait cursor

In C#, ASP.Net.

Simple example of how to set the mouse pointer to be the wait cursor in a web page:

this.Page.Form.Style.Add("cursor", "wait");

The above code adds the 'style="cursor:wait;"' attribute to the node in the output HTML.