Link to home
Start Free TrialLog in
Avatar of tonelm54
tonelm54

asked on

Force textbox recognition

Ive got a control which my ASP.net page picks up as an object, I know its a textbox, and Im sure Ive used something before to force detection of a textbox, something like:-

type(myObect,textbox).text = "Hello"

Any ideas what I should be using instead of type
ASKER CERTIFIED SOLUTION
Avatar of Mlanda T
Mlanda T
Flag of South Africa image

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
((TextBox)myobject).Text = "Hello"; should work.