how to sezt textbox-focus?

  • Thread starter Thread starter RASTA
  • Start date Start date
R

RASTA

hello everbody,

does anyone know, its possible to set the focus of a textbox?

if i have an textbox with few lines of text, and i refresh the site, the
focus of textbox will move to the beginning...

but i want to let the focus of the end of the text.....


some suggestions?

best regards

rasta

----------------------------------------
HangulHanjaFastConversion-Eigenschaft

True if Microsoft Word automatically converts a word with
only one suggestion during conversion between hangul
and hanja. Read/write Boolean.
 
If you want to do it in code use:
this.RegisterStartupScript("FocusedControl",
"<script
language='javascript'>\r\ndocument.getElementById('txtSomeControl').focus();
\r\n</script>\r\n");

Otherwise you can hook the above code direclty in the HTML either before the
end of the form tag or by hooking the form's onload() event..

+++ Rick ---

--

Rick Strahl
West Wind Technologies
http://www.west-wind.com/
http://www.west-wind.com/webblog/
 
hi rick,

sorry about my question-- but your syntax isnt correctly....

i have no javascript experience-- so please put the correctly
code-syntax for me

thank you very much


rasta

----------------------------------------
HangulHanjaFastConversion-Eigenschaft

True if Microsoft Word automatically converts a word with
only one suggestion during conversion between hangul
and hanja. Read/write Boolean.
 
Back
Top