最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

c# - HOW to set Focus on a hidden Textbox - Stack Overflow

programmeradmin2浏览0评论

In my page_load event I have this code :

myTextbox.focus().

So when I set my textbox to visible=false my code doesn't work.

In my page_load event I have this code :

myTextbox.focus().

So when I set my textbox to visible=false my code doesn't work.

Share edited Jul 26, 2012 at 15:26 phadaphunk 13.3k16 gold badges75 silver badges109 bronze badges asked Jul 26, 2012 at 15:17 wbenwben 2472 gold badges7 silver badges20 bronze badges 1
  • hidden:elements can't be focused,clicked,keyup..... – bugwheels94 Commented Jul 26, 2012 at 15:18
Add a ment  | 

4 Answers 4

Reset to default 12

Hidden controls are not focusable. Set the Opacity to 0 instead.

You cannot. If something isn't rendered, it cannot be interacted with, so you cannot set the focus to it.

Focus means that user input is focused to the control, that means if the control is a text-box, the text input cursor will be placed in the control or if it is a checkbox, the checkbox will be focused and may be selected by pressing space, you can't put a text input cursor in a hidden control and it cannot be used for any user input.

If you still want to set focus for some reason, try setting its height and width to Zero. Like style="height:0px; width:0px" and use Page.SetFocus(yourControl); to set focus

When you set the Control.Visible property to false it doesn't just hide the control on the page. It omits that control from being rendered on the client's browser entirely, but "remembers" everything about that control on the server for future postbacks.

If you actually do a client side hide (i.e. set the CSS Style display: none; then it will still exist on the page, but just be hidden. At that point you can focus it.

发布评论

评论列表(0)

  1. 暂无评论