设置TextBox的内容时,应改变TextBox的()。A、Text属性B、ForeColor属性C、Font属性D、Name属性

设置TextBox的内容时,应改变TextBox的()。

  • A、Text属性
  • B、ForeColor属性
  • C、Font属性
  • D、Name属性

相关考题:

(14)文本框TextBox中的内容若要设置为用户不能修改,应该置属性.A.Locked B.MultiLineC.PasswordChar D.ScroIIBar

YouaredevelopingaAsp.netwebapplicationthtincludesapanelcontrolthathasIDcontentsection.YouneedtoaddatextBoxcontroltothepanelcontrol.() A.this.RequireControlState(this.LoadControl(typeof(TextBox),null));B.this.ContentSection.control.add(this.FindControl(ContentSection.ID+asp:TextBox));C.this.ContentSection.control.add(this.LoadControl(typeof(TextBox),null));D.this.LoadComplete(asp:TextBox).IntiantiateIn(ContentSection)

文本框TextBox中的内容若要设置为用户不能修改,应设置( )属性。A.LockedB.MultiLineC.Pa5swordCharD.ScrollBar

"在窗体上放入一个名称为Button1命令按钮和两个名称分别为TextBox1、TextBox2两个文本框,然后编写如下事件过程: 程序运行后,在文本框TextBox1中输入10,然后单击命令按钮,则在TextBox2中显示的内容是()"A10B20C30D40

要使TextBox控件呈多行显示,需要将其Multiline属性设置为False。

设置TextBox的背景颜色时,应改变窗体的()。A、Name属性B、Caption属性C、BackColor属性D、Font属性

当需要将TextBox控件作为密码输入框时,应设置()

将一个TextBox控件设置成密码框,应该设置TEXTMODE属性。()

在TextBox控件中输入内容并当焦点离开TextBox控件时能触发TextChanged事件,应设置属性()

将TextBox控件的()属性设置为()就可以多行显示。

下面那个代码段正确的增加了一个TextBox控件到一个名为form1的Web窗体上?()A、TextBox c = new TextBox(); c.ID = "txtUserName"; c.Visible = true;B、TextBox c = new TextBox(); c.ID = "txtUserName"; c.Visible = true; c.Controls.Add(form1);C、TextBox c = new TextBox(); c.ID = "txtUserName"; c.Visible = true; c.Add(form1);D、TextBox c = new TextBox(); c.ID = "txtUserName"; c.Visible = true; form1.Controls.Add(c);

在VB中,下列控件不能改变大小的是()。A、TimerB、PictureBoxC、LabelD、TextBox

当需要把TextBox控件作为密码输入框时,应该设置其TextMode属性的值为()A、 PasswordB、 密码C、 *D、 not PostBack

下列控件中,()控件不能改变大小。A、LabelB、FrameC、TimerD、TextBox

TextBox控件的()属性值用于设置多行文本显示。A、TextB、PasswordC、maxLengthD、Multiline

当需要将TextBox控件作为密码输入框时(要求隐藏密码的代码),应该将控件的TextMode属性设置为()

设置TextBox的字体颜色时,应改变TextBox的()。A、Text属性B、ForeColor属性C、Font属性D、Name属性

You are developing a Asp.net web application tht includes a panel control that has ID contentsection.You need to add a textBox control to the panel control.()A、this.RequireControlState(this.LoadControl(typeof(TextBox),null));B、this.ContentSection.control.add(this.FindControl(ContentSection.ID + "asp:TextBox"));C、this.ContentSection.control.add(this.LoadControl(typeof(TextBox),null));D、this.LoadComplete("asp:TextBox").IntiantiateIn(Content Section)

单选题若要使TextBox中的文字不能被修改,应对()属性进行设置。ALockedBVisibleCEnabledDReadOnly

填空题在TextBox控件中输入内容并当焦点离开TextBox控件时能触发TextChanged事件,应设置属性()

单选题在VB程序的窗体上,从上到下依次创建Checkbok、Textbox、Listbox、CommandButton这4个控件,则运行该程序显示窗体时,他们之间获得焦点的顺序是()。ACommandButton、Checkbok、Textbox、ListboxBCheckbok、Textbox、Listbox、CommandButtonCCheckbok、Listbox、CommandButton、TextboxDListbox、Checkbok、CommandButton、Textbox

单选题设置TextBox的字体时,应改变TextBox的()。AText属性BFont属性CForeColor属性DName属性

单选题textbox控件通过()属性获取或设置textbox控件的行为模式。AtextBfontCtextmodeDenabled

单选题textbox控件通过textmode属性设置为()是密码输入模式。AsinglelineBmultilineCpasswordDdoubleline

单选题textbox控件通过()属性获取或设置textbox控件的文本内容。AtextBfontCforecolorDborderstyle

单选题You are developing a Asp.net web application tht includes a panel control that has ID contentsection.You need to add a textBox control to the panel control.()Athis.RequireControlState(this.LoadControl(typeof(TextBox),null));Bthis.ContentSection.control.add(this.FindControl(ContentSection.ID + asp:TextBox));Cthis.ContentSection.control.add(this.LoadControl(typeof(TextBox),null));Dthis.LoadComplete(asp:TextBox).IntiantiateIn(Content Section)

填空题当需要将TextBox控件作为密码输入框时,应设置()