Link to home
Start Free TrialLog in
Avatar of rawdrib
rawdrib

asked on

Controlling Focus: setting cursor in asp:server controls

Hi, I need to know how to position the cursor in asp:server controls on load and after postbacks in VB.net.  I have had no success finding functions for this purpose such as gotfocus() or setfocus(). Have also tried Javascript to no avail. Just need to know class and functions to access control of the cursor or javascript to provide cursor control. Thank You
Avatar of S-Twilley
S-Twilley

If by cursor you mean mouse pointer...

I know with WinForms you can set the position like this

        Me.Cursor.Position = New Point(3, 5)

.... however, as for ASP.NET im not sure, but maybe there is something similar within it?

Sorry I can't be much more help but I can't set up ASP.NET apps at the moment
ASKER CERTIFIED SOLUTION
Avatar of arif_eqbal
arif_eqbal

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial