changing cursor

  • Thread starter Thread starter Craig G
  • Start date Start date
C

Craig G

how do you change the cursor in Asp.Net?

in windows app's i just used me.Cursor = Cursors.WaitCursor but it aint available in ASP.net
 
It is available with css style rule cursor. Like cursor:hand;

Eliyahu

how do you change the cursor in Asp.Net?

in windows app's i just used me.Cursor = Cursors.WaitCursor but it aint available in ASP.net
 
i havent a clue what you mean!!

It is available with css style rule cursor. Like cursor:hand;

Eliyahu

how do you change the cursor in Asp.Net?

in windows app's i just used me.Cursor = Cursors.WaitCursor but it aint available in ASP.net
 
ASP.NET is for web design. And CSS styles is one of basic concepts in web design. You have to familiarize yourself with it.

Eliyahu

i havent a clue what you mean!!

It is available with css style rule cursor. Like cursor:hand;

Eliyahu

how do you change the cursor in Asp.Net?

in windows app's i just used me.Cursor = Cursors.WaitCursor but it aint available in ASP.net
 
aye i know all about the CSS but havent ever used it for anything like this. only for setting labels n textboxes etc

so i now have the following in the CSS also

..yarCursorWait
{
cursor:wait;
}

..yarCursorNorm
{
cursor:default
}

but how do i go about setting the cursor to yarCursorWait when an execute button is pressed and then setting it default after the process has ended

ASP.NET is for web design. And CSS styles is one of basic concepts in web design. You have to familiarize yourself with it.

Eliyahu

i havent a clue what you mean!!

It is available with css style rule cursor. Like cursor:hand;

Eliyahu

how do you change the cursor in Asp.Net?

in windows app's i just used me.Cursor = Cursors.WaitCursor but it aint available in ASP.net
 
See http://www.echoecho.com/csscursors.htm
for a quickie -get-up-to-speed tutorial
on using styles to change cursors.



Juan T. Llibre
ASP.NET MVP
http://asp.net.do/foros/
Foros de ASP.NET en Español
=====================

i havent a clue what you mean!!

It is available with css style rule cursor. Like cursor:hand;

Eliyahu

how do you change the cursor in Asp.Net?

in windows app's i just used me.Cursor = Cursors.WaitCursor but it aint
available in ASP.net
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top