答案,正式使用前请祛除答案以及选项的红色颜色!
1:C2:C3:D4:D5:B
6:B7:D8:B9:A10:D
11:B12:D13:A14:C15:D
16:C17:C18:A19:A20:B
21:B22:D23:A24:A25:D
26:C27:C28:D29:C30:D
31:D32:D33:C34:B35:B
36:C37:C38:B39:C40:A
41:B42:C43:C44:B45:C
46:A47:B48:C49:C50:C
51:A52:A53:A54:A55:A
56:A57:D58:C59:C60:D
61:D62:C63:C64:C65:A
66:D67:B68:D69:D70:C
71:A72:B73:D74:C75:C
76:B77:C78:B79:D80:A
81:D82:D83:D84:B85:B
86:B87:C88:D89:C90:C
91:C92:C93:D94:C95:A
96:C97:C98:C99:A100:D
101:A102:C103:C104:C105:B
106:A107:A108:B109:D110:C
111:B112:D113:B114:C115:C
116:C117:A118:A119:A120:B
121:A122:D123:C124:A125:D
126:D127:C128:A129:D130:A
131:C132:B133:C134:C135:A
136:D137:B138:D139:B140:C
141:B142:B143:D144:D145:D
146:A147:B148:A149:D150:D
151:C152:A153:A154:A155:D
156:B157:D158:C159:C160:D
161:B162:A163:C164:C165:D
166:D167:D168:B169:D170:A
171:A172:B173:C174:D175:B
176:AD177:ABC178:ABCD179:CD180:CD
181:BC182:ABD183:BCD184:ABD185:AC
186:BCD187:BD188:ABCD189:ABC190:AD
191:BC192:AB193:CD194:AD195:ABC
196:AD197:BCD198:AD199:BD200:ABCD
2020年4月18日模拟笔试 第二场
200题_共100.00分_及格60.00分
第1题 【单选题】【0.50分】【特性分析】
假设网站根目录有一名为:MyMaster.master的母版页,则内容页的MasterPageFile属性设置正确的是?
[if !supportLists]A. [endif]MyMaster
[if !supportLists]B. [endif]MyMaster.cs
[if !supportLists]C. [endif]~/MyMaster.master
[if !supportLists]D. [endif]~/MyMaster.master.cs
第2题 【单选题】【0.50分】【概念理解】
在CSS样式文件中,下列注释正确的是()。
[if !supportLists]A. [endif]// this is a comment //
[if !supportLists]B. [endif]// this is a comment
[if !supportLists]C. [endif]/* this is a comment */
[if !supportLists]D. [endif]this is a comment
第3题 【单选题】【0.50分】【结果判断】
在CSS中为DIV设置如下样式,则该标签的实际宽度为()。div{width:200px;padding:0 20px;border:1px;}
[if !supportLists]A. [endif]200px
[if !supportLists]B. [endif]221px
[if !supportLists]C. [endif]240px
[if !supportLists]D. [endif]242px
第4题 【单选题】【0.50分】【概念理解】
在ASP.NET中,Application是( )类的实例。
[if !supportLists]A. [endif]HttpApplication
[if !supportLists]B. [endif]Application
[if !supportLists]C. [endif]HttpApplicationUtility
[if !supportLists]D. [endif]HttpApplicationState
第5题 【单选题】【0.50分】【概念理解】
关于站点地图,以下说法错误的是()。
[if !supportLists]A. [endif]站点地图的文件名必须是web.sitemap
[if !supportLists]B. [endif]站点地图文件可以有多个
[if !supportLists]C. [endif]站点地图文件必须放置在应用程序的根目录下
[if !supportLists]D. [endif]可以使用其PathSeparator属性更改链接分隔符
第6题 【单选题】【0.50分】【概念理解】
在数据库技术中,独立于计算机系统的模型是()。
[if !supportLists]A. [endif]层次模型
[if !supportLists]B. [endif]E—R模型
[if !supportLists]C. [endif]关系模型
[if !supportLists]D. [endif]面向对象的模型
第7题 【单选题】【0.50分】【特性分析】
在ASP.NET中,下列不属于FileUpload控件的属性是()。
[if !supportLists]A. [endif]HasFile
[if !supportLists]B. [endif]FileName
[if !supportLists]C. [endif]Enable
[if !supportLists]D. [endif]SaveAs
第8题 【单选题】【0.50分】【结果判断】
设页面中有一个ID为:txtName的文本框控件,如果在页面按钮的点击事件中编写以下代码: Response.Redirect("~/List.aspx?name="+txtName.Text); 则在List.aspx页面中使用以下哪行代码可以获取到文本框填写的数据?
[if !supportLists]A. [endif]Request.QueryString["txtName"]
[if !supportLists]B. [endif]Request.QueryString["name"]
[if !supportLists]C. [endif]Request.Form["txtName"]
[if !supportLists]D. [endif]Request.Form["name"]
第9题 【单选题】【0.50分】【概念理解】
javascript变量命名不正确的是()。
[if !supportLists]A. [endif]3name
[if !supportLists]B. [endif]_age
[if !supportLists]C. [endif]$gender
[if !supportLists]D. [endif]student_name
第10题 【单选题】【0.50分】【概念理解】
如要在网站上提供一个logo.zip文件下载,在以下下划线处应填写的代码是? protected void btnDown1_Click(object sender, EventArgs e) { Response.ContentType = "application/x-zip-compressed"; Response.AddHeader("Content-Disposition", "attachment;filename=logo.zip"); string filename = Server.MapPath("logo.zip"); ________________________________ }
[if !supportLists]A. [endif]Response.Write(filename);
[if !supportLists]B. [endif]Response.SaveAs(filename);
[if !supportLists]C. [endif]Response.Redirect(filename);
[if !supportLists]D. [endif]Response.TransmitFile(filename);
第11题 【单选题】【0.50分】【概念理解】
Web Forms窗体页面的后缀是?
[if !supportLists]A. [endif].asp
[if !supportLists]B. [endif].aspx
[if !supportLists]C. [endif].ascx
[if !supportLists]D. [endif].asax
第12题 【单选题】【0.50分】【代码纠错】
假设有一名为:list的集合对象,需要在下划线中添加的代码是? // 创建webgrid对象 var webgrid = new WebGrid(list); // 输出表格显示数据 @webgrid.__________
[if !supportLists]A. [endif]WriteText()
[if !supportLists]B. [endif]WriteHtml()
[if !supportLists]C. [endif]GetText()
[if !supportLists]D. [endif]GetHtml()
第13题 【单选题】【0.50分】【概念理解】
关于DropDownList控件,下列说法正确的是()
[if !supportLists]A. [endif]在客户端被解释成的HTML标记
[if !supportLists]B. [endif]可以有多个选项处于选中状态
[if !supportLists]C. [endif]SelectedValue属性用于获取选中的项的Text属性
[if !supportLists]D. [endif]SelectedIndex属性用于获取选中的项的索引,索引从1开始
第14题 【单选题】【0.50分】【概念理解】
关于单值绑定说法正确的是()。
[if !supportLists]A. [endif]<%DateTime.Now %>可以在页面输出当前时间
[if !supportLists]B. [endif]<%--DateTime.Now %>可以在页面输出当前时间
[if !supportLists]C. [endif]<%=DateTime.Now %>可以在页面输出当前时间
[if !supportLists]D. [endif]<%#DateTime.Now %>可以在页面输出当前时间
第15题 【单选题】【0.50分】【概念理解】
三层架构中的数据访问层描述,正确的是()。
[if !supportLists]A. [endif]数据访问层就是对数据库的数据进行查询
[if !supportLists]B. [endif]表现层可以直接依赖数据访问层
[if !supportLists]C. [endif]数据访问层依赖于业务逻辑层
[if !supportLists]D. [endif]数据访问层可以访问各种类型的数据源,不仅仅是SQL SERVER 数据库
第16题 【单选题】【0.50分】【概念理解】
Http协议默认的端口号是?
[if !supportLists]A. [endif]21
[if !supportLists]B. [endif]25
[if !supportLists]C. [endif]80
[if !supportLists]D. [endif]110
第17题 【单选题】【0.50分】【特性分析】
下列关于Repeater控件的说法,正确的是()。
[if !supportLists]A. [endif]Repeater控件不能显示分页
[if !supportLists]B. [endif]Repeater控件不能显示HTML内容
[if !supportLists]C. [endif]Repeater控件不会自动添加HTML相关内容
[if !supportLists]D. [endif]Repeater控件不会显示没有设置格式的内容
第18题 【单选题】【0.50分】【概念理解】
网上竞拍系统要求验证竞拍物品价格必须在0至10000之间。最适合使用的ASP.NET验证控件是?
[if !supportLists]A. [endif]RangeValidator
[if !supportLists]B. [endif]RegularExpressionValidator
[if !supportLists]C. [endif]RequireFieldValidator
[if !supportLists]D. [endif]CompareValidator
第19题 【单选题】【0.50分】【特性分析】
在ASP.NET中,可使用FileUpload控件实现文件上传,下列( )属性用于判断是否选择需要上传的文件。
[if !supportLists]A. [endif]HasFile
[if !supportLists]B. [endif]FileName
[if !supportLists]C. [endif]Enable
[if !supportLists]D. [endif]SaveAs
第20题 【单选题】【0.50分】【特性分析】
ViewState说法正确的是( )。
[if !supportLists]A. [endif]Viewstate的值存储于服务器端,不会在客户端出现
[if !supportLists]B. [endif]Viewstate的值会跟随客户端请求发送到服务器端
[if !supportLists]C. [endif]Viewstate不可以存储服务器控件的一些状态
[if !supportLists]D. [endif]Viewstate不会造成带宽浪费
第21题 【单选题】【0.50分】【特性分析】
在三层架构中ADO.NET数据访问类放在( )中使用。
[if !supportLists]A. [endif]表现层
[if !supportLists]B. [endif]数据访问层
[if !supportLists]C. [endif]业务逻辑层
[if !supportLists]D. [endif]每一层都可以
第22题 【单选题】【0.50分】【概念理解】
关于Application 对象,下列说法错误的是( )
[if !supportLists]A. [endif]用于共享应用程序级信息,即多个用户共享一个Application 对象
[if !supportLists]B. [endif]当第一个用户请求ASP.NET 文件时,将启动应用程序并创建 Application 对象
[if !supportLists]C. [endif]一旦Application 对象被创建,在整个应用程序中都可以访问该对象的值,直到应用程序结束
[if !supportLists]D. [endif]Application 对象的用法和 Cookie 对象相同,赋值和取值需要用到 Reponse 对象和 Request 对象
第23题 【单选题】【0.50分】【概念理解】
如果希望控件内容改变之后立刻回传表单,需要在控件中添加属性()
[if !supportLists]A. [endif]AutoPostBack=″True″
[if !supportLists]B. [endif]IsPostBack=″True″
[if !supportLists]C. [endif]IsPostBack=″False″
[if !supportLists]D. [endif]AutoPostBack=″False″
第24题 【单选题】【0.50分】【概念理解】
在SQL Server数据库中,字符串函数可以用于控制返回给用户的字符串内容,下列()函数用于将传递给它的字符串转变为大写。
[if !supportLists]A. [endif]upper
[if !supportLists]B. [endif]lower
[if !supportLists]C. [endif]rtrim
[if !supportLists]D. [endif]stuff
第25题 【单选题】【0.50分】【概念理解】
关于三层架构的优势,下列说法错误的是( )
[if !supportLists]A. [endif]适于变化,利于维护
[if !supportLists]B. [endif]适用于协作开发
[if !supportLists]C. [endif]主流趋势
[if !supportLists]D. [endif]提高系统性能
第26题 【单选题】【0.50分】【结果判断】
在ASP.NET中,为了才当前页面跳转到一个相同目录下名为Main.htm的页面,下面方法正确的是()。
[if !supportLists]A. [endif]Server.Execute(“Main.htm”);
[if !supportLists]B. [endif]Servlet.Transfer(“Main.htm”);
[if !supportLists]C. [endif]Response.Redirect(“Main.htm”);
[if !supportLists]D. [endif]Response.Write(“Main.htm”);
第27题 【单选题】【0.50分】【特性分析】
关于DataList控件,下列说法正确的是有()。
[if !supportLists]A. [endif]DataList不会自动生成任何代码
[if !supportLists]B. [endif]DataList不能使用ObjectDataSource控件进行数据绑定
[if !supportLists]C. [endif]DataList没有分页功能
[if !supportLists]D. [endif]DataList只有模板列
第28题 【单选题】【0.50分】【概念理解】
以下不是WebGrid的功能的是?
[if !supportLists]A. [endif]自动建立显示数据的HTML表格
[if !supportLists]B. [endif]支持不同的格式化选项
[if !supportLists]C. [endif]支持数据分页
[if !supportLists]D. [endif]支持控件内的数据编辑
第29题 【单选题】【0.50分】【概念理解】
内容页中,除了页面指令,在Content控件外可以出现的是?
[if !supportLists]A. [endif]div标签
[if !supportLists]B. [endif]js脚本
[if !supportLists]C. [endif]服务器脚本
[if !supportLists]D. [endif]纯文本
第30题 【单选题】【0.50分】【概念理解】
下列关于C#接口的使用,描述错误的是()。
[if !supportLists]A. [endif]接口是一组规范和标准
[if !supportLists]B. [endif]接口可以约束类的行为
[if !supportLists]C. [endif]接口只能含有未实现的方法
[if !supportLists]D. [endif]接口中的方法可以有默认实现
第31题 【单选题】【0.50分】【概念理解】
在CSS中属性()可以设置元素的叠放顺序。
[if !supportLists]A. [endif]A. position
[if !supportLists]B. [endif]display
[if !supportLists]C. [endif]overflow
[if !supportLists]D. [endif]z-index
第32题 【单选题】【0.50分】【特性分析】
关于IIS(Internet信息服务器),下列说法错误的是()。
[if !supportLists]A. [endif]ASP.NET站点通过IIS运行
[if !supportLists]B. [endif]可以在计算机“管理”界面中启动IIS
[if !supportLists]C. [endif]可以在IIS中创建多个站点
[if !supportLists]D. [endif]只能在IIS中创建一个站点
第33题 【单选题】【0.50分】【概念理解】
下列关于泛型集合Dictionarylist=new Dictionary()的操作,正确的是()。
[if !supportLists]A. [endif]list.Remove(list[0])
[if !supportLists]B. [endif]list.RemoveAt(0)
[if !supportLists]C. [endif]foreach(Person per in list.Values){}
[if !supportLists]D. [endif]foreach(Person per in list.Keys){}
第34题 【单选题】【0.50分】【概念理解】
在ASP.NET中,下列关于Cookie对象说法错误的是( )。
[if !supportLists]A. [endif]Cookie对象用于存储文本信息,伴随着用户请求和页面在Web服务器和浏览器之间传递
[if !supportLists]B. [endif]可通过Request.Cookies向客户端写入Cookie
[if !supportLists]C. [endif]设置过期时间的Cookie,到达过期时间将自动清除
[if !supportLists]D. [endif]未设置过期时间的Cookie,存储于浏览器的内存中
第35题 【单选题】【0.50分】【概念理解】
写入Cookie数据,需要通过哪个对象进行?
[if !supportLists]A. [endif]Page
[if !supportLists]B. [endif]Response
[if !supportLists]C. [endif]Request
[if !supportLists]D. [endif]Server
第36题 【单选题】【0.50分】【概念理解】
可以使用Response对象的()方法实现文件的下载功能。
[if !supportLists]A. [endif]Write
[if !supportLists]B. [endif]FileWrite
[if !supportLists]C. [endif]TransmitFile
[if !supportLists]D. [endif]DownloadFile
第37题 【单选题】【0.50分】【概念理解】
以下描述,哪个不是Repeater控件的特点?
[if !supportLists]A. [endif]完全由模板驱动
[if !supportLists]B. [endif]不生成任何类似于“”的布局代码
[if !supportLists]C. [endif]可以实现在控件中编辑数据
[if !supportLists]D. [endif]比DataList更轻量
第38题 【单选题】【0.50分】【概念理解】
现有C#变量username,需要在页面显示其值,则下列书写正确的是?
[if !supportLists]A. [endif]<%username%>
[if !supportLists]B. [endif]<%=username%>
[if !supportLists]C. [endif]<%$Eval("username")%>
[if !supportLists]D. [endif]<%#Eval("username")%>
第39题 【单选题】【0.50分】【概念理解】
TextBox控件的( )属性值用于标示是密码框。
[if !supportLists]A. [endif]Text
[if !supportLists]B. [endif]Password
[if !supportLists]C. [endif]TextMode
[if !supportLists]D. [endif]Multiline
第40题 【单选题】【0.50分】【概念理解】
如果需要保存用户登录的状态,下次访问网站时自动登录,需要使用的状态管理技术是?
[if !supportLists]A. [endif]Cookie
[if !supportLists]B. [endif]Application
[if !supportLists]C. [endif]Session
[if !supportLists]D. [endif]查询字符串
第41题 【单选题】【0.50分】【特性分析】
关于用户密码的加密,下列说法错误的是()。
[if !supportLists]A. [endif]为了防止用户密码泄露所带来的信息安全隐患
[if !supportLists]B. [endif]在进行用户登录验证时需要解密
[if !supportLists]C. [endif]MD5加密是不可逆的
[if !supportLists]D. [endif]进行用户登录验证时无需解密
第42题 【单选题】【0.50分】【概念理解】
在一个ASP.NET项目中,可以使用()控件来判断TextBox控件中的内容是一个数字,并且数字范围在1~99之间。
[if !supportLists]A. [endif]RequiredFieldValidator
[if !supportLists]B. [endif]CompareValidator
[if !supportLists]C. [endif]RangeFieldValidator
[if !supportLists]D. [endif]RegularExpressionValidator
第43题 【单选题】【0.50分】【特性分析】
在asp.net中,为了把页面中一个名为name的string类型的字段帮定到一个textbox控件的文本属性中,下列代码正确的是()
[if !supportLists]A. [endif]<asp:TextBox?id=”TextBox1”?Text=”<#%name%>”></asp:textbox>
[if !supportLists]B. [endif]<asp:TextBox?id=”TextBox1”?Text=”<%name%>”></asp:textbox>
[if !supportLists]C. [endif]<asp:TextBox?id=”TextBox1”?Text=”<%#name%>”></asp:textbox>
[if !supportLists]D. [endif]<asp:TextBox?id=”TextBox1”?Text=”<name>”></asp:textbox>?
第44题 【单选题】【0.50分】【概念理解】
关于C#泛型描述不正确的是()。
[if !supportLists]A. [endif]泛型集合可以约束存储数据的类型
[if !supportLists]B. [endif]泛型集合在访问元素时,需要将数据转回存储前的类型
[if !supportLists]C. [endif]使用泛型可以极大限度的重用代码
[if !supportLists]D. [endif]泛型是从C#2.0版本开始添加的功能
第45题 【单选题】【0.50分】【特性分析】
在CSS中有一个名为nav的类,下列选项中可以将该类样式应用到id为nav_header的标签上()。
[if !supportLists]A. [endif]$("#nav_header").css('nav')
[if !supportLists]B. [endif]$("#nav_header").class('nav')
[if !supportLists]C. [endif]$("#nav_header").addClass('nav')
[if !supportLists]D. [endif]$("#nav_header").cssName='nav'
第46题 【单选题】【0.50分】【特性分析】
在ASP.NET中,可使用FileUpload控件实现文件上传,下列( )属性用于判断是否选择需要上传的文件。
[if !supportLists]A. [endif]HasFile
[if !supportLists]B. [endif]FileName
[if !supportLists]C. [endif]Enable
[if !supportLists]D. [endif]SaveAs
第47题 【单选题】【0.50分】【概念理解】
ValidationSummary控件收集本页中所有验证控件的哪个属性值?
[if !supportLists]A. [endif]Text
[if !supportLists]B. [endif]ErrorMessage
[if !supportLists]C. [endif]Display
[if !supportLists]D. [endif]ControlToValidate
第48题 【单选题】【0.50分】【概念理解】
javascript中对于未声明的变量使用typeof运算符会输出()。
[if !supportLists]A. [endif]string
[if !supportLists]B. [endif]object
[if !supportLists]C. [endif]undefined
[if !supportLists]D. [endif]null
第49题 【单选题】【0.50分】【概念理解】
在三层架构中,每个层中均会使用的到的是()
[if !supportLists]A. [endif]表现层
[if !supportLists]B. [endif]业务逻辑层
[if !supportLists]C. [endif]模型层
[if !supportLists]D. [endif]数据访问层
第50题 【单选题】【0.50分】【概念理解】
在asp.net中判断页面首次加载一般应检查( )属性。
[if !supportLists]A. [endif]IsFristLoad
[if !supportLists]B. [endif]ViewState
[if !supportLists]C. [endif]IsPostBack
[if !supportLists]D. [endif]IsValid
第51题 【单选题】【0.50分】【结果判断】
在ASP.NET中,Server.MapPath("/")获取的是()。
[if !supportLists]A. [endif]站点的根目录的绝对路径
[if !supportLists]B. [endif]站点的根目录的相对路径
[if !supportLists]C. [endif]代码所在页面的绝对路径
[if !supportLists]D. [endif]代码所在页面的相对路径
第52题 【单选题】【0.50分】【特性分析】
在ASP.NET的页面中,下列关于母版页和普通页区别的描述,正确的是( )
[if !supportLists]A. [endif]母版页的扩展名为master,而普通页的扩展名为aspx
[if !supportLists]B. [endif]母版页能直接访问
[if !supportLists]C. [endif]普通页可以使用ContentPlaceHolder控件
[if !supportLists]D. [endif]母版页的页面指令是@Page
第53题 【单选题】【0.50分】【概念理解】
在类的成员中,可以用于存储数据的是()
[if !supportLists]A. [endif]字段
[if !supportLists]B. [endif]属性
[if !supportLists]C. [endif]方法
[if !supportLists]D. [endif]事件
第54题 【单选题】【0.50分】【特性分析】
在ASP.NET的页面中,下列关于母版页和普通页区别的描述,正确的是( )
[if !supportLists]A. [endif]母版页的扩展名为master,而普通页的扩展名为aspx
[if !supportLists]B. [endif]母版页能直接访问
[if !supportLists]C. [endif]普通页可以使用ContentPlaceHolder控件
[if !supportLists]D. [endif]母版页的页面指令是@Page
第55题 【单选题】【0.50分】【概念理解】
表现层的主要职责是?
[if !supportLists]A. [endif]数据展示
[if !supportLists]B. [endif]数据处理
[if !supportLists]C. [endif]数据传递
[if !supportLists]D. [endif]数据库访问
第56题 【单选题】【0.50分】【概念理解】
为了验证用户在文本框中输入的用户名不为空,需要使用的验证控件是?
[if !supportLists]A. [endif]RequiredFieldValidator
[if !supportLists]B. [endif]Comparevalidator
[if !supportLists]C. [endif]RangeValidator
[if !supportLists]D. [endif]RegularExpressionValidator
第57题 【单选题】【0.50分】【结果判断】
CSS样式background-position:10px -10px 代表的意义是()
[if !supportLists]A. [endif]背景图片向左偏移10px,向下偏移10px
[if !supportLists]B. [endif]背景图片向左偏移10px,向上偏移10px
[if !supportLists]C. [endif]背景图片向右偏移10px,向下偏移10px
[if !supportLists]D. [endif]背景图片向右偏移10px,向上偏移10px
第58题 【单选题】【0.50分】【概念理解】
在ASP.NET中,下列不属于DataList的模板是()。
[if !supportLists]A. [endif]ItemTemplate
[if !supportLists]B. [endif]SeparatorTemplate
[if !supportLists]C. [endif]PagerTemplate
[if !supportLists]D. [endif]AlternatingItemTemplate
第59题 【单选题】【0.50分】【概念理解】
DataList控件默认在客户端浏览器,会生成何种html标签?
[if !supportLists]A. [endif]div
[if !supportLists]B. [endif]select
[if !supportLists]C. [endif]table
[if !supportLists]D. [endif]ul
第60题 【单选题】【0.50分】【概念理解】
以下数据绑定表达式,正确的是?
[if !supportLists]A. [endif]<%Eval("ID")%>
[if !supportLists]B. [endif]<%=Eval("ID")%>
[if !supportLists]C. [endif]<%$Eval("ID")%>
[if !supportLists]D. [endif]<%#Eval("ID")%>
第61题 【单选题】【0.50分】【概念理解】
在html中,要通过无列表符号来实现导航菜单,css属性中的()可以实现导航菜单横向排列。
[if !supportLists]A. [endif]list-style
[if !supportLists]B. [endif]padding
[if !supportLists]C. [endif]z-index
[if !supportLists]D. [endif]float
第62题 【单选题】【0.50分】【结果判断】
分析下述SQL代码: declare @i int; set @i=6; if @i>=5 print @i-1; else print @i+1; print @i; 执行上述代码,结果是()。
[if !supportLists]A. [endif]5
[if !supportLists]B. [endif]6
[if !supportLists]C. [endif]5 6
[if !supportLists]D. [endif]以上结果均不是
第63题 【单选题】【0.50分】【概念理解】
如果要实现一个小型的购物车功能,可以使用如下内置对象实现?
[if !supportLists]A. [endif]Cookie
[if !supportLists]B. [endif]Application
[if !supportLists]C. [endif]Session
[if !supportLists]D. [endif]Server
第64题 【单选题】【0.50分】【概念理解】
T-SQL中用于事务回滚的语句是()。
[if !supportLists]A. [endif]begin transaction
[if !supportLists]B. [endif]commit transaction
[if !supportLists]C. [endif]rollback transaction
[if !supportLists]D. [endif]return transaction
第65题 【单选题】【0.50分】【概念理解】
在ASP.NET中,下列哪种方式可以从客户端获取表单数据?
[if !supportLists]A. [endif]Request.Form
[if !supportLists]B. [endif]Request.QuerString
[if !supportLists]C. [endif]Respone.Write
[if !supportLists]D. [endif]Server.Transfer
第66题 【单选题】【0.50分】【概念理解】
关于Application 对象,下列说法错误的是( )
[if !supportLists]A. [endif]用于共享应用程序级信息,即多个用户共享一个Application 对象
[if !supportLists]B. [endif]当第一个用户请求ASP.NET 文件时,将启动应用程序并创建 Application 对象
[if !supportLists]C. [endif]一旦Application 对象被创建,在整个应用程序中都可以访问该对象的值,直到应用程序结束
[if !supportLists]D. [endif]Application 对象的用法和 Cookie 对象相同,赋值和取值需要用到 Reponse 对象和 Request 对象
第67题 【单选题】【0.50分】【特性分析】
下列关于DataList控件的说法,正确的是()。
[if !supportLists]A. [endif]DataList控件以层布局方式显示多条数据记录
[if !supportLists]B. [endif]DataList控件不支持分页功能,会将数据源提供的所有数据全部呈现在页面上
[if !supportLists]C. [endif]DataList控件不支持修改和删除功能
[if !supportLists]D. [endif]DataList控件执行效率低于GirdView控件
第68题 【单选题】【0.50分】【特性分析】
在ASP.NET中,下列关于Session对象说法正确的是( )。
[if !supportLists]A. [endif]每次打开一个Web页面会创建一个Session对象
[if !supportLists]B. [endif]用户关闭客户端Web页面后,Session对象会立即消失
[if !supportLists]C. [endif]应用程序关闭以后,Session对象才消失
[if !supportLists]D. [endif]每个Session对象相互独立,不能相互访问
第69题 【单选题】【0.50分】【特性分析】
ASP.NET中包含多种维护状态的技术,下列选项将信息保存在客户端的是()
[if !supportLists]A. [endif]ViewState
[if !supportLists]B. [endif]Session
[if !supportLists]C. [endif]Application
[if !supportLists]D. [endif]Cookie
第70题 【单选题】【0.50分】【概念理解】
要获取文档中指定标签名的HTML页面元素对象,应该使用document对象的()方法。
[if !supportLists]A. [endif]getElementById()
[if !supportLists]B. [endif]getElementsByName()
[if !supportLists]C. [endif]getElementsByTagName()
[if !supportLists]D. [endif]createElement()
第71题 【单选题】【0.50分】【概念理解】
对于验证汇总控件ValidationSummary,以下()属性可以将错误消息以消息对话框的形式弹出?
[if !supportLists]A. [endif]ShowMessageBox
[if !supportLists]B. [endif]IsShowMessageBox
[if !supportLists]C. [endif]Show
[if !supportLists]D. [endif]IsShow
第72题 【单选题】【0.50分】【特性分析】
3、 以下是某程序员在一个Web窗体中编写的部分C#代码,已知GetJobDs是一个返回一个数据集的方法,当某个用户第一次访问该页面时,下列说法正确的是()。 private void Page_Load(object sender , System.EventArgs e){ if(!this.IsPostBack){ //1 DataSet ds=this.GetJobDs(); //2 this.GridView1.DataSource=ds.Tables[0]; //3 } }(选择一项)
[if !supportLists]A. [endif]用户不能在GridView控件中看到数据集中的数据,因为没有设置GridView控件的DataMember属性
[if !supportLists]B. [endif]用户不能在GridView控件中看到数据集中的数据,因为没有进行数据绑定
[if !supportLists]C. [endif]用户不能在GridView控件中看到数据集中的数据,因为代码行2、3不能被执行
[if !supportLists]D. [endif]用户可以在GridView控件中看到数据集中的数据
第73题 【单选题】【0.50分】【特性分析】
在ASP.NET中,下列不属于FileUpload控件的属性是()。
[if !supportLists]A. [endif]HasFile
[if !supportLists]B. [endif]FileName
[if !supportLists]C. [endif]Enable
[if !supportLists]D. [endif]SaveAs
第74题 【单选题】【0.50分】【概念理解】
以下代码:string sql = "select * from users"; 应该出现在哪一层?
[if !supportLists]A. [endif]表现层
[if !supportLists]B. [endif]业务逻辑层
[if !supportLists]C. [endif]数据访问层
[if !supportLists]D. [endif]模型层
第75题 【单选题】【0.50分】【概念理解】
关于单值绑定说法正确的是()。
[if !supportLists]A. [endif]<%DateTime.Now %>可以在页面输出当前时间
[if !supportLists]B. [endif]<%--DateTime.Now %>可以在页面输出当前时间
[if !supportLists]C. [endif]<%=DateTime.Now %>可以在页面输出当前时间
[if !supportLists]D. [endif]<%#DateTime.Now %>可以在页面输出当前时间
第76题 【单选题】【0.50分】【特性分析】
在C#中,程序使用( )语句抛出系统异常或自定义异常。
[if !supportLists]A. [endif]run
[if !supportLists]B. [endif]throw
[if !supportLists]C. [endif]catch
[if !supportLists]D. [endif]finally
第77题 【单选题】【0.50分】【概念理解】
多态是指不同子类对于同一个方法实现不同操作的方式。C#中的多态不能通过()实现。
[if !supportLists]A. [endif]接口
[if !supportLists]B. [endif]虚方法
[if !supportLists]C. [endif]密封类
[if !supportLists]D. [endif]抽象类
第78题 【单选题】【0.50分】【结果判断】
Sqlserver中,已知执行语句:Select count(score),sum(score)from score 返回的结果是5和750,那么执行语句:Select avg(score) from score,返回的结果是( )。
[if !supportLists]A. [endif]5
[if !supportLists]B. [endif]150
[if !supportLists]C. [endif]1500
[if !supportLists]D. [endif]750
第79题 【单选题】【0.50分】【概念理解】
在ASP.NET中,Application是( )类的实例。
[if !supportLists]A. [endif]HttpApplication
[if !supportLists]B. [endif]Application
[if !supportLists]C. [endif]HttpApplicationUtility
[if !supportLists]D. [endif]HttpApplicationState
第80题 【单选题】【0.50分】【概念理解】
C#中,若定义一个类Person,期望该类不能被其他类所继承,则可以使用()关键字修饰该类。
[if !supportLists]A. [endif]sealed
[if !supportLists]B. [endif]abstract
[if !supportLists]C. [endif]static
[if !supportLists]D. [endif]virtual
第81题 【单选题】【0.50分】【结果判断】
假设站点在服务器上的根目录在“F:\WWWRoot\”下,则Server.MapPath(“~/default.aspx”)的返回值是?
[if !supportLists]A. [endif]F:\WWWRoot\
[if !supportLists]B. [endif]default.aspx
[if !supportLists]C. [endif]/default.aspx
[if !supportLists]D. [endif]F:\WWWRoot\default.aspx
第82题 【单选题】【0.50分】【代码纠错】
如果需要代码只在页面第一次加载时执行,则下划线处理应填写的代码是?protected void Page_Load(object sender, EventArgs e) { if (________________) { //代码 } }
[if !supportLists]A. [endif]IsValid
[if !supportLists]B. [endif]!IsValid
[if !supportLists]C. [endif]IsPostBack
[if !supportLists]D. [endif]!IsPostBack
第83题 【单选题】【0.50分】【概念理解】
在SQL Server中,执行带参数的存储过程,下列语法描述正确是()。
[if !supportLists]A. [endif]存储过程名
[if !supportLists]B. [endif]参数存储过程名
[if !supportLists]C. [endif]EXECUTE 参数存储过程名
[if !supportLists]D. [endif]EXECUTE 存储过程名参数
第84题 【单选题】【0.50分】【特性分析】
为了完成在网页上添加用于统计人数的计算器,可以通过()对象对计数变量Count的加法操作来实现。
[if !supportLists]A. [endif]Session
[if !supportLists]B. [endif]Application
[if !supportLists]C. [endif]Page
[if !supportLists]D. [endif]Cookie
第85题 【单选题】【0.50分】【特性分析】
为了完成在网页上添加用于统计人数的计算器,可以通过()对象对计数变量Count的加法操作来实现。
[if !supportLists]A. [endif]Session
[if !supportLists]B. [endif]Application
[if !supportLists]C. [endif]Page
[if !supportLists]D. [endif]Cookie
第86题 【单选题】【0.50分】【概念理解】
三层架构的描述正确的是()
[if !supportLists]A. [endif]三层架构可以使程序设计“低内聚、高耦合”
[if !supportLists]B. [endif]三层架构设计中,将问题划分开来各个解决,易于控制、扩展、分配资源及维护
[if !supportLists]C. [endif]三层架构指的是一个应用程序分为3 个小程序
[if !supportLists]D. [endif]三层架构的表现层只能是web 应用程序
第87题 【单选题】【0.50分】【概念理解】
下列不属于ASP.NET中Response对象的属性或方法是?
[if !supportLists]A. [endif]Cache
[if !supportLists]B. [endif]Cookies
[if !supportLists]C. [endif]QueryString
[if !supportLists]D. [endif]End
第88题 【单选题】【0.50分】【概念理解】
下列关于Response 对象中属性和事件的说法,错误的是( )
[if !supportLists]A. [endif]Cookies 获取响应的 Cookie 集合
[if !supportLists]B. [endif]Redirect 将客户端重定向到新的 URL
[if !supportLists]C. [endif]Write 向页面输出数据
[if !supportLists]D. [endif]Write 不能向页面输出 JavaScript 脚本
第89题 【单选题】【0.50分】【概念理解】
关于数据库存储过程描述错误的是()。
[if !supportLists]A. [endif]存储过程可以加快系统运行速度
[if !supportLists]B. [endif]存储过程仅在创建时编译,以后每次执行无需重新编译
[if !supportLists]C. [endif]存储过程存放于数据库客户机
[if !supportLists]D. [endif]存储过程可封装数据库的复杂操作
第90题 【单选题】【0.50分】【特性分析】
javascript要实现弹出一个带“确定”和“取消”按钮的对话框,应该使用window对象的哪个方法()。
[if !supportLists]A. [endif]alert
[if !supportLists]B. [endif]prompt
[if !supportLists]C. [endif]confirm
[if !supportLists]D. [endif]open
第91题 【单选题】【0.50分】【特性分析】
在ASP.NET应用程序中,登录后在后续多个页面中均需要获取登录用户的信息,可使用()对象保存用户信息
[if !supportLists]A. [endif]Cookie
[if !supportLists]B. [endif]Application
[if !supportLists]C. [endif]Session
[if !supportLists]D. [endif]Request
第92题 【单选题】【0.50分】【概念理解】
对于验证控件,以下属性如果不设置会报错的是?
[if !supportLists]A. [endif]Text
[if !supportLists]B. [endif]ErrorMessage
[if !supportLists]C. [endif]ControlToValidate
[if !supportLists]D. [endif]Display
第93题 【单选题】【0.50分】【概念理解】
在C#中,下列()关键字用于重写父类的虚方法。
[if !supportLists]A. [endif]new
[if !supportLists]B. [endif]base
[if !supportLists]C. [endif]virtual
[if !supportLists]D. [endif]override
第94题 【单选题】【0.50分】【特性分析】
关于数据库存储过程描述错误的是()。
[if !supportLists]A. [endif]存储过程可以加快系统运行速度
[if !supportLists]B. [endif]存储过程仅在创建时编译,以后每次执行无需重新编译
[if !supportLists]C. [endif]存储过程存放于数据库客户机
[if !supportLists]D. [endif]存储过程可封装数据库的复杂操作
第95题 【单选题】【0.50分】【概念理解】
下拉菜单中,用户更改元素select中的值时,会调用()事件处理程序。
[if !supportLists]A. [endif]onchange
[if !supportLists]B. [endif]onfocus
[if !supportLists]C. [endif]onmouseover
[if !supportLists]D. [endif]onclick
第96题 【单选题】【0.50分】【特性分析】
在asp.net中,为了把页面中一个名为name的string类型的字段帮定到一个textbox控件的文本属性中,下列代码正确的是()
[if !supportLists]A. [endif]<asp:TextBox?id=”TextBox1”?Text=”<#%name%>”></asp:textbox>
[if !supportLists]B. [endif]<asp:TextBox?id=”TextBox1”?Text=”<%name%>”></asp:textbox>
[if !supportLists]C. [endif]<asp:TextBox?id=”TextBox1”?Text=”<%#name%>”></asp:textbox>
[if !supportLists]D. [endif]<asp:TextBox?id=”TextBox1”?Text=”<name>”></asp:textbox>?
第97题 【单选题】【0.50分】【概念理解】
在ASP.NET中,下列不属于Repeater的模板是()。
[if !supportLists]A. [endif]ItemTemplate
[if !supportLists]B. [endif]SeparatorTemplate
[if !supportLists]C. [endif]PagerTemplate
[if !supportLists]D. [endif]AlternatingItemTemplate
第98题 【单选题】【0.50分】【特性分析】
关于DataList控件,下列说法正确的是有()。
[if !supportLists]A. [endif]DataList不会自动生成任何代码
[if !supportLists]B. [endif]DataList不能使用ObjectDataSource控件进行数据绑定
[if !supportLists]C. [endif]DataList没有分页功能
[if !supportLists]D. [endif]DataList只有模板列
第99题 【单选题】【0.50分】【结果判断】
在一个ASPX页面的Page_Load事件中,编写了如下代码,则执行该页面后,将在页面中输出()。 private void Page_Load(object sender , System.EventArgs e){ Response . Write(“欢迎光临”); Response .End(); Response . Write(“欢迎下次光临”); }
[if !supportLists]A. [endif]欢迎光临
[if !supportLists]B. [endif]欢迎下次光临
[if !supportLists]C. [endif]欢迎光临欢迎下次光临
[if !supportLists]D. [endif]欢迎光临欢迎下次光临
第100题 【单选题】【0.50分】【概念理解】
如果要验证两个文本框输入的密码是否一致,一般情况下使用的验证控件是?
[if !supportLists]A. [endif]RangeValidator
[if !supportLists]B. [endif]RegularExpressionValidator
[if !supportLists]C. [endif]RequireFieldValidator
[if !supportLists]D. [endif]CompareValidator
第101题 【单选题】【0.50分】【概念理解】
一个仓库可以存放多种零件,每一种零件可以存放在不同的仓库中,仓库和零件之间为()的联系。
[if !supportLists]A. [endif]多对多
[if !supportLists]B. [endif]一对多
[if !supportLists]C. [endif]一对一
[if !supportLists]D. [endif]多对一
第102题 【单选题】【0.50分】【概念理解】
在ASP.NET中,应用程序启动时触发的事件为()。
[if !supportLists]A. [endif]Session_Start
[if !supportLists]B. [endif]Session_End
[if !supportLists]C. [endif]Application_Start
[if !supportLists]D. [endif]Application_End
第103题 【单选题】【0.50分】【特性分析】
在ASP.NET应用程序中,登录后在后续多个页面中均需要获取登录用户的信息,可使用()对象保存用户信息
[if !supportLists]A. [endif]Cookie
[if !supportLists]B. [endif]Application
[if !supportLists]C. [endif]Session
[if !supportLists]D. [endif]Request
第104题 【单选题】【0.50分】【概念理解】
Web Pages页面文件的后缀是?
[if !supportLists]A. [endif].html
[if !supportLists]B. [endif].shtml
[if !supportLists]C. [endif].cshtml
[if !supportLists]D. [endif].xhtml
第105题 【单选题】【0.50分】【概念理解】
下列选项中不能与下述C#代码片段中的方法构成重载的是()。 public void test(string s) { Console.Write(s); }
[if !supportLists]A. [endif]public void test(string a,string b){ Console.Write(b);}
[if !supportLists]B. [endif]public int test(string a){ return 123;}
[if !supportLists]C. [endif]public void test(int a){ Console.Write(a);}
[if !supportLists]D. [endif]public void test(string a,int b){ Console.Write(a);}
第106题 【单选题】【0.50分】【概念理解】
如需为超级链接添加下划线,下列语法正确的是()。
[if !supportLists]A. [endif]a{text-decoration: underline}
[if !supportLists]B. [endif]a{underline:none}
[if !supportLists]C. [endif]a{decoration:no underline}
[if !supportLists]D. [endif]a{text-decoration:none}
第107题 【单选题】【0.50分】【概念理解】
下列关于接口的使用,错误的是()。
[if !supportLists]A. [endif]接口可以直接实例化
[if !supportLists]B. [endif]接口可以作为参数进行传递
[if !supportLists]C. [endif]接口可以作为一个函数的返回值
[if !supportLists]D. [endif]实现多个接口可以说是变相实现了多重继承
第108题 【单选题】【0.50分】【特性分析】
在三层架构中ADO.NET数据访问类放在( )中使用。
[if !supportLists]A. [endif]表现层
[if !supportLists]B. [endif]数据访问层
[if !supportLists]C. [endif]业务逻辑层
[if !supportLists]D. [endif]每一层都可以
第109题 【单选题】【0.50分】【概念理解】
Razor代码块的语法是?
[if !supportLists]A. [endif]<%...%>
[if !supportLists]B. [endif]@<...>
[if !supportLists]C. [endif]@(...)
[if !supportLists]D. [endif]@{...}
第110题 【单选题】【0.50分】【概念理解】
在三层架构中,一个实体类对象用于封装一条记录,那么多条记录使用()进行存储。
[if !supportLists]A. [endif]实体类对象
[if !supportLists]B. [endif]数组
[if !supportLists]C. [endif]List<T>
[if !supportLists]D. [endif]多个实体类对象
第111题 【单选题】【0.50分】【特性分析】
ViewState说法正确的是( )。
[if !supportLists]A. [endif]Viewstate的值存储于服务器端,不会在客户端出现
[if !supportLists]B. [endif]Viewstate的值会跟随客户端请求发送到服务器端
[if !supportLists]C. [endif]Viewstate不可以存储服务器控件的一些状态
[if !supportLists]D. [endif]Viewstate不会造成带宽浪费
第112题 【单选题】【0.50分】【概念理解】
三层架构中,存储过程的调用应该写在哪一层()?
[if !supportLists]A. [endif]模型层
[if !supportLists]B. [endif]表现层
[if !supportLists]C. [endif]业务逻辑层
[if !supportLists]D. [endif]数据访问层
第113题 【单选题】【0.50分】【概念理解】
在SQL Server中,部分匹配查询有关通配符“_”的正确描述是()。
[if !supportLists]A. [endif]“_”代表多个字符
[if !supportLists]B. [endif]“_”代表一个字符
[if !supportLists]C. [endif]“_”不能与“%”一同使用
[if !supportLists]D. [endif]“_”可以代表零个或多个字符
第114题 【单选题】【0.50分】【概念理解】
下列不属于ASP.NET中Response对象的属性或方法是?
[if !supportLists]A. [endif]Cache
[if !supportLists]B. [endif]Cookies
[if !supportLists]C. [endif]QueryString
[if !supportLists]D. [endif]End
第115题 【单选题】【0.50分】【概念理解】
在asp.net中判断页面首次加载一般应检查( )属性。
[if !supportLists]A. [endif]IsFristLoad
[if !supportLists]B. [endif]ViewState
[if !supportLists]C. [endif]IsPostBack
[if !supportLists]D. [endif]IsValid
第116题 【单选题】【0.50分】【特性分析】
javascript中要将IP地址“192.168.1.100”按”.”分割成4个字符串,应该使用哪个方法()。
[if !supportLists]A. [endif]substring()
[if !supportLists]B. [endif]substr()
[if !supportLists]C. [endif]split()
[if !supportLists]D. [endif]indexOf()
第117题 【单选题】【0.50分】【概念理解】
网上竞拍系统要求验证竞拍物品价格必须在0至10000之间。最适合使用的ASP.NET验证控件是?
[if !supportLists]A. [endif]RangeValidator
[if !supportLists]B. [endif]RegularExpressionValidator
[if !supportLists]C. [endif]RequireFieldValidator
[if !supportLists]D. [endif]CompareValidator
第118题 【单选题】【0.50分】【概念理解】
在A类中定义protected的属性Name,下列说法正确的( )。
[if !supportLists]A. [endif]定义B类继承A类,则B类也具有Name属性
[if !supportLists]B. [endif]在B类中创建A类对象,可以通过“对象.成员"访问Name
[if !supportLists]C. [endif]无论B类是否继承A类,Name只能在A类中使用
[if !supportLists]D. [endif]Name可以在任何地方使用
第119题 【单选题】【0.50分】【概念理解】
在C#中,可以通过()来实现方法重载。
[if !supportLists]A. [endif]方法名相同,不同的参数个数
[if !supportLists]B. [endif]方法名相同,不同的参数名称
[if !supportLists]C. [endif]不同的方法名称,相同的参数个数
[if !supportLists]D. [endif]相同的方法名,相同的参数个数,不同的返回值
第120题 【单选题】【0.50分】【概念理解】
关于GET方法提交和POST方法提交描述正确的是()
[if !supportLists]A. [endif]少量且长度小的数据使用Post请求,大量且长度较大的数据使用GET请求
[if !supportLists]B. [endif]在以URL地址为参数的方法中,只能使用GET请求
[if !supportLists]C. [endif]希望用户能够保存结果地址用于下次访问时使用POST请求
[if !supportLists]D. [endif]涉及需要保密的数据时使用GET请求
第121题 【单选题】【0.50分】【概念理解】
在Razor语法中,行内表达式(变量和函数)以什么符号开始?
[if !supportLists]A. [endif]@
[if !supportLists]B. [endif]#
[if !supportLists]C. [endif]$
[if !supportLists]D. [endif]%
第122题 【单选题】【0.50分】【概念理解】
下列关于继承的说法,错误的是()。
[if !supportLists]A. [endif]在C#中,object类是所有类的基类
[if !supportLists]B. [endif]子类不能直接访问父类的私有成员
[if !supportLists]C. [endif]在创建子类对象时会自动调用父类的构造函数
[if !supportLists]D. [endif]调用类中成员时使用base关键字,调用父类成员时使用this关键字
第123题 【单选题】【0.50分】【概念理解】
对于web.sitemap的内容描述错误的是?
[if !supportLists]A. [endif]站点地图根节点为元素,每个文件有且仅有一个根节点
[if !supportLists]B. [endif]<siteMap>下一级有且仅有一个<siteMapNode>节点
[if !supportLists]C. [endif]在站点地图中,同一个URL能出现多次
[if !supportLists]D. [endif]站点地图文件指定的页面关系是逻辑关系,而不是存储位置间的关系
第124题 【单选题】【0.50分】【概念理解】
为了验证用户在文本框中输入的用户名不为空,需要使用的验证控件是?
[if !supportLists]A. [endif]RequiredFieldValidator
[if !supportLists]B. [endif]Comparevalidator
[if !supportLists]C. [endif]RangeValidator
[if !supportLists]D. [endif]RegularExpressionValidator
第125题 【单选题】【0.50分】【概念理解】
下列关于Response 对象中属性和事件的说法,错误的是( )
[if !supportLists]A. [endif]Cookies 获取响应的 Cookie 集合
[if !supportLists]B. [endif]Redirect 将客户端重定向到新的 URL
[if !supportLists]C. [endif]Write 向页面输出数据
[if !supportLists]D. [endif]Write 不能向页面输出 JavaScript 脚本
第126题 【单选题】【0.50分】【概念理解】
关于C#中ArrayList和HashTable描述不正确的是()。
[if !supportLists]A. [endif]ArrayList和HashTable的容量都是根据需要自动扩展的
[if !supportLists]B. [endif]ArrayList和HashTable存储的元素可以是不同类型的数据。
[if !supportLists]C. [endif]ArrayList和HashTable取出数据时都需要转回存储前的类型
[if !supportLists]D. [endif]ArrayList和HashTable都可以通过索引访问元素
第127题 【单选题】【0.50分】【概念理解】
在asp.net中的母版页中,母版页的文件扩展是( )
[if !supportLists]A. [endif]aspx
[if !supportLists]B. [endif]asax
[if !supportLists]C. [endif]master
[if !supportLists]D. [endif]ascx
第128题 【单选题】【0.50分】【概念理解】
E-R图是数据库设计的一种表现形式,其适用于建立数据库的()。
[if !supportLists]A. [endif]概念模型
[if !supportLists]B. [endif]逻辑模型
[if !supportLists]C. [endif]结构模型
[if !supportLists]D. [endif]物理模型
第129题 【单选题】【0.50分】【概念理解】
下列javascript内置对象实例化错误的是()。
[if !supportLists]A. [endif]var x=new Date()
[if !supportLists]B. [endif]var x=new Array();
[if !supportLists]C. [endif]var x=new String();
[if !supportLists]D. [endif]var x=new Math();
第130题 【单选题】【0.50分】【概念理解】
在ASP.NET应用中,改变Button控件的( )属性,可以设置控件的大小、颜色、位置等。
[if !supportLists]A. [endif]Style
[if !supportLists]B. [endif]Text
[if !supportLists]C. [endif]Name
[if !supportLists]D. [endif]Type
第131题 【单选题】【0.50分】【代码纠错】
在下划线中需要添加的代码是?@{var isOK = true; } @if (isOK) { ___好!很好 } else { ___错!大错 }
[if !supportLists]A. [endif]@
[if !supportLists]B. [endif]@=
[if !supportLists]C. [endif]@:
[if !supportLists]D. [endif]@%
第132题 【单选题】【0.50分】【结果判断】
ASP.NET代码“Response.Write(Server.HtmlEncode(“<H1>HtmlEncode 样例</H1>”))”的输出结果是( )。
[if !supportLists]A. [endif]在窗口打印样式为H1的“HtmlEncode样例”字体
[if !supportLists]B. [endif]在窗口打印“
HtmlEncode样例
”[if !supportLists]C. [endif]在窗口打印“H1HtmlEncode样例H1”
[if !supportLists]D. [endif]出现错误信息,说明嵌入的串中包含非法字符
第133题 【单选题】【0.50分】【结果判断】
分析下述C#片段中的属性,该属性是( )属性。 private string name; public string Name { get{return name;} }
[if !supportLists]A. [endif]可读可写
[if !supportLists]B. [endif]只写
[if !supportLists]C. [endif]只读
[if !supportLists]D. [endif]静态
第134题 【单选题】【0.50分】【概念理解】
在ASP.NET中,下列关于Application对象的说法,正确的是?
[if !supportLists]A. [endif]每次打开一个Web页面会创建一个Application对象
[if !supportLists]B. [endif]用户关闭客户端Web页面后,Application对象会立即消失
[if !supportLists]C. [endif]应用程序退出以后,Application对象才会消失
[if !supportLists]D. [endif]Application对象不能被其他用户访问
第135题 【单选题】【0.50分】【概念理解】
在SQL Server中,下列哪句是case语句的标准语法?()
[if !supportLists]A. [endif]case...when...then...else...end
[if !supportLists]B. [endif]case...begin...end...else...
[if !supportLists]C. [endif]case...while...end
[if !supportLists]D. [endif]case...if...else...end
第136题 【单选题】【0.50分】【概念理解】
在.NET框架下开发三层架构的数据库应用系统时,实体对象在下列哪里使用?
[if !supportLists]A. [endif]表现层
[if !supportLists]B. [endif]业务逻辑层
[if !supportLists]C. [endif]数据访问层
[if !supportLists]D. [endif]以上都可以
第137题 【单选题】【0.50分】【概念理解】
在C#中,类成员默认的访问修饰符是( )。
[if !supportLists]A. [endif]public
[if !supportLists]B. [endif]private
[if !supportLists]C. [endif]protected
[if !supportLists]D. [endif]internal
第138题 【单选题】【0.50分】【概念理解】
关于三层架构的优势,下列说法错误的是( )
[if !supportLists]A. [endif]适于变化,利于维护
[if !supportLists]B. [endif]适用于协作开发
[if !supportLists]C. [endif]主流趋势
[if !supportLists]D. [endif]提高系统性能
第139题 【单选题】【0.50分】【概念理解】
现需要生成Chart图表,若需将其保存为一张图片存于项目的Images目录下,可调用其()方法。
[if !supportLists]A. [endif]Save()
[if !supportLists]B. [endif]SaveAs()
[if !supportLists]C. [endif]Write()
[if !supportLists]D. [endif]WriteAs()
第140题 【单选题】【0.50分】【概念理解】
如果要实现一个小型的购物车功能,可以使用如下内置对象实现?
[if !supportLists]A. [endif]Cookie
[if !supportLists]B. [endif]Application
[if !supportLists]C. [endif]Session
[if !supportLists]D. [endif]Server
第141题 【单选题】【0.50分】【概念理解】
三层架构的描述正确的是()
[if !supportLists]A. [endif]三层架构可以使程序设计“低内聚、高耦合”
[if !supportLists]B. [endif]三层架构设计中,将问题划分开来各个解决,易于控制、扩展、分配资源及维护
[if !supportLists]C. [endif]三层架构指的是一个应用程序分为3 个小程序
[if !supportLists]D. [endif]三层架构的表现层只能是web 应用程序
第142题 【单选题】【0.50分】【概念理解】
在ASP.NET中,下列关于Cookie对象说法错误的是( )。
[if !supportLists]A. [endif]Cookie对象用于存储文本信息,伴随着用户请求和页面在Web服务器和浏览器之间传递
[if !supportLists]B. [endif]可通过Request.Cookies向客户端写入Cookie
[if !supportLists]C. [endif]设置过期时间的Cookie,到达过期时间将自动清除
[if !supportLists]D. [endif]未设置过期时间的Cookie,存储于浏览器的内存中
第143题 【单选题】【0.50分】【概念理解】
在SQL Server中,使用CRAETE TABLE语句建立的是?()
[if !supportLists]A. [endif]数据库
[if !supportLists]B. [endif]索引
[if !supportLists]C. [endif]视图
[if !supportLists]D. [endif] 表
第144题 【单选题】【0.50分】【概念理解】
关于C#序列化和反序列化,描述错误的是()。
[if !supportLists]A. [endif]序列化是将对象的状态存储到特定存储介质中的过程
[if !supportLists]B. [endif]标识一个类可以序列化,要在类前加上[Serializable]特性
[if !supportLists]C. [endif]如果一个类被标识为可序列化,则其包含的成员也必须可序列化
[if !supportLists]D. [endif]反序列化是将对象实例的状态存储到媒体中的过程
第145题 【单选题】【0.50分】【概念理解】
asp.net中,以下对DropDownList服务器控件描述错误的是( )
[if !supportLists]A. [endif]DropDownList服务器控件不支持多重选择
[if !supportLists]B. [endif]可以用SelectedIndex属性或者SelectedItem属性来判断哪一项被选取
[if !supportLists]C. [endif]当用户更改选项时会引发SelectedIndexChanaged事件
[if !supportLists]D. [endif]类似WinForm中?的?ComboBox?控件,允许用户在运行时输入文本
第146题 【单选题】【0.50分】【特性分析】
三种常见数据绑定控件的对比,说法正确的是
[if !supportLists]A. [endif]功能对比:GridView>DataList>Repeater
[if !supportLists]B. [endif]功能对比:DataList>Repeater>GridView
[if !supportLists]C. [endif]布局灵活度:GridView>Repeater和DataList
[if !supportLists]D. [endif]性能对比:DataList>Repeater>GridView
第147题 【单选题】【0.50分】【特性分析】
要选择id='div1'所有span子元素,请选出正确的选择器()
[if !supportLists]A. [endif]$('#div1 span')
[if !supportLists]B. [endif]$('#div1>span')
[if !supportLists]C. [endif]$('#div1+span')
[if !supportLists]D. [endif]$('#div1~span')
第148题 【单选题】【0.50分】【概念理解】
C#提供一种集合类型HashTable(哈希表),哈希表中元素的对应关系是()。
[if !supportLists]A. [endif]一个键对应一个值
[if !supportLists]B. [endif]一个键对应多个值
[if !supportLists]C. [endif]一个值对应多个键
[if !supportLists]D. [endif]多个键对应多个值
第149题 【单选题】【0.50分】【概念理解】
下列不属于DIV+CSS布局优势的是()。
[if !supportLists]A. [endif]表现和内容分离
[if !supportLists]B. [endif]大大缩减页面代码,提高页面浏览速度
[if !supportLists]C. [endif]便于搜索引擎搜索
[if !supportLists]D. [endif]比table布局更容易学习
第150题 【单选题】【0.50分】【概念理解】
如果需要一行显示多列,需要设置DataList控件的哪个属性?
[if !supportLists]A. [endif]Items
[if !supportLists]B. [endif]Columns
[if !supportLists]C. [endif]Repeat
[if !supportLists]D. [endif]RepeatColumns
第151题 【单选题】【0.50分】【概念理解】
在asp.net中的母版页中,母版页的文件扩展是( )
[if !supportLists]A. [endif]aspx
[if !supportLists]B. [endif]asax
[if !supportLists]C. [endif]master
[if !supportLists]D. [endif]ascx
第152题 【单选题】【0.50分】【结果判断】
在ASP.NET中,Server.MapPath("/")获取的是()。
[if !supportLists]A. [endif]站点的根目录的绝对路径
[if !supportLists]B. [endif]站点的根目录的相对路径
[if !supportLists]C. [endif]代码所在页面的绝对路径
[if !supportLists]D. [endif]代码所在页面的相对路径
第153题 【单选题】【0.50分】【概念理解】
下列哪个ASP.NET内置对象作用是将数据从服务器发送到客户机浏览器?
[if !supportLists]A. [endif]Response
[if !supportLists]B. [endif]Request
[if !supportLists]C. [endif]Cookie
[if !supportLists]D. [endif]Session
第154题 【单选题】【0.50分】【结果判断】
下列属于全局应用程序类文件的是()。
[if !supportLists]A. [endif]Global.asax
[if !supportLists]B. [endif]Web.config
[if !supportLists]C. [endif]Styles.css
[if !supportLists]D. [endif]AssemblyInfo.cs
第155题 【单选题】【0.50分】【概念理解】
在C#中,下列使用键值对存储数据的是( )。
[if !supportLists]A. [endif]ArrayList
[if !supportLists]B. [endif]Array
[if !supportLists]C. [endif]字符型数组
[if !supportLists]D. [endif]HashTable
第156题 【单选题】【0.50分】【结果判断】
设页面中有一个ID为:txtName的文本框控件,如果在页面按钮的点击事件中编写以下代码: Response.Redirect("~/List.aspx?name="+txtName.Text); 则在List.aspx页面中使用以下哪行代码可以获取到文本框填写的数据?
[if !supportLists]A. [endif]Request.QueryString["txtName"]
[if !supportLists]B. [endif]Request.QueryString["name"]
[if !supportLists]C. [endif]Request.Form["txtName"]
[if !supportLists]D. [endif]Request.Form["name"]
第157题 【单选题】【0.50分】【结果判断】
查询student表中的所有非空email信息, 下列语句正确的是()。
[if !supportLists]A. [endif]Select email from student where email !=null
[if !supportLists]B. [endif]Select email from student where email not is null
[if !supportLists]C. [endif]Select email from student where email <> null
[if !supportLists]D. [endif]Select email from student where email is not null
第158题 【单选题】【0.50分】【概念理解】
在css中,下列()不是定位页面元素的方式。
[if !supportLists]A. [endif]static
[if !supportLists]B. [endif]absolute
[if !supportLists]C. [endif]top
[if !supportLists]D. [endif]fixed
第159题 【单选题】【0.50分】【概念理解】
在ASP.NET的web.config文件中,用于网站与数据库连接的配置节是()。
[if !supportLists]A. [endif]<configSections/>
[if !supportLists]B. [endif]<connectionString/>
[if !supportLists]C. [endif]<connectionStrings/>
[if !supportLists]D. [endif]<appSettings/>
第160题 【单选题】【0.50分】【概念理解】
三层架构中的数据访问层描述,正确的是()。
[if !supportLists]A. [endif]数据访问层就是对数据库的数据进行查询
[if !supportLists]B. [endif]表现层可以直接依赖数据访问层
[if !supportLists]C. [endif]数据访问层依赖于业务逻辑层
[if !supportLists]D. [endif]数据访问层可以访问各种类型的数据源,不仅仅是SQL SERVER 数据库
第161题 【单选题】【0.50分】【概念理解】
以下不是验证控件的是?
[if !supportLists]A. [endif]RequiredFieldValidator
[if !supportLists]B. [endif]Repeater
[if !supportLists]C. [endif]Comparevalidator
[if !supportLists]D. [endif]RangeValidator
第162题 【单选题】【0.50分】【结果判断】
分析下述JavaScript代码,经过运算后a的值为()。 var x= "12"; var y=34; var a=x+y;
[if !supportLists]A. [endif]1234
[if !supportLists]B. [endif]46
[if !supportLists]C. [endif]34
[if !supportLists]D. [endif]程序报错
第163题 【单选题】【0.50分】【概念理解】
WebGrid显示中文标题名,需要调用的方法是?
[if !supportLists]A. [endif]Title()
[if !supportLists]B. [endif]Header()
[if !supportLists]C. [endif]Column()
[if !supportLists]D. [endif]Row()
第164题 【单选题】【0.50分】【概念理解】
以下常用软件中,哪些是B/S模式?
[if !supportLists]A. [endif]腾讯QQ
[if !supportLists]B. [endif]微信
[if !supportLists]C. [endif]淘宝网
[if !supportLists]D. [endif]英雄联盟游戏
第165题 【单选题】【0.50分】【特性分析】
在ASP.NET中,下列关于Session对象说法正确的是( )。
[if !supportLists]A. [endif]每次打开一个Web页面会创建一个Session对象
[if !supportLists]B. [endif]用户关闭客户端Web页面后,Session对象会立即消失
[if !supportLists]C. [endif]应用程序关闭以后,Session对象才消失
[if !supportLists]D. [endif]每个Session对象相互独立,不能相互访问
第166题 【单选题】【0.50分】【特性分析】
ASP.NET中包含多种维护状态的技术,下列选项将信息保存在客户端的是()
[if !supportLists]A. [endif]ViewState
[if !supportLists]B. [endif]Session
[if !supportLists]C. [endif]Application
[if !supportLists]D. [endif]Cookie
第167题 【单选题】【0.50分】【特性分析】
下列选项中,可以设置页面中某个DIV标签相对于页面水平居中的CSS样式是()。
[if !supportLists]A. [endif]padding:0px auto
[if !supportLists]B. [endif]text-align:center
[if !supportLists]C. [endif]vertical-align:middle
[if !supportLists]D. [endif]margin:0px auto
第168题 【单选题】【0.50分】【概念理解】
下列Math对象哪个函数可以实现将小数四舍五入为最接近的整数功能()。
[if !supportLists]A. [endif]ceil()
[if !supportLists]B. [endif]round()
[if !supportLists]C. [endif]random()
[if !supportLists]D. [endif]floor()
第169题 【单选题】【0.50分】【概念理解】
下列jQuery函数不能执行动画效果的是()。
[if !supportLists]A. [endif]animate
[if !supportLists]B. [endif]slidedown
[if !supportLists]C. [endif]show
[if !supportLists]D. [endif]append
第170题 【单选题】【0.50分】【概念理解】
以下对动态网页理解错误的是?
[if !supportLists]A. [endif]带有动画效果
[if !supportLists]B. [endif]具有交互性
[if !supportLists]C. [endif]内容可以自动更新
[if !supportLists]D. [endif]内容会根据访问的时间和访问者而改变
第171题 【单选题】【0.50分】【结果判断】
下列属于全局应用程序类文件的是()。
[if !supportLists]A. [endif]Global.asax
[if !supportLists]B. [endif]Web.config
[if !supportLists]C. [endif]Styles.css
[if !supportLists]D. [endif]AssemblyInfo.cs
第172题 【单选题】【0.50分】【概念理解】
如果要验证用户名的合法性(至少6位,包含英文字母和数字),一般情况下使用的验证控件是?
[if !supportLists]A. [endif]RangeValidator
[if !supportLists]B. [endif]RegularExpressionValidator
[if !supportLists]C. [endif]RequireFieldValidator
[if !supportLists]D. [endif]CompareValidator
第173题 【单选题】【0.50分】【概念理解】
在成绩表grade中,字段score代表分数,下列()语句可以返回成绩表中的最低分。
[if !supportLists]A. [endif]select max(score) from grade
[if !supportLists]B. [endif]select avg(score) from grade
[if !supportLists]C. [endif]select min(score) from grade
[if !supportLists]D. [endif]select group(score) from grade
第174题 【单选题】【0.50分】【特性分析】
一个DataSet中可以包含( )DataTable。
[if !supportLists]A. [endif]1个
[if !supportLists]B. [endif]2个
[if !supportLists]C. [endif]3个
[if !supportLists]D. [endif]多个
第175题 【单选题】【0.50分】【结果判断】
ASP.NET代码“Response.Write(Server.HtmlEncode(“<H1>HtmlEncode 样例</H1>”))”的输出结果是( )。
[if !supportLists]A. [endif]在窗口打印样式为H1的“HtmlEncode样例”字体
[if !supportLists]B. [endif]在窗口打印“
HtmlEncode样例
”[if !supportLists]C. [endif]在窗口打印“H1HtmlEncode样例H1”
[if !supportLists]D. [endif]出现错误信息,说明嵌入的串中包含非法字符
第176题 【多选题】【0.50分】【结果判断】
在ASP.NET中,为了在当前页面获得其他页面从地址栏中传递过来的参数ExamLevel的值,以下方法正确的有( )。【选两项】 http://localhost:55212/WebForm1.aspx?ExamLevel=10
[if !supportLists]A. [endif]Request.QueryString[“ExamLevel”];
[if !supportLists]B. [endif]Request.QueryString[1];
[if !supportLists]C. [endif]Request.Form["ExamLevel"];
[if !supportLists]D. [endif]Request[“ExamLevel”];
第177题 【多选题】【0.50分】【概念理解】
在ASP.NET中,下列关于Session对象的说法,不正确的是?
[if !supportLists]A. [endif]每次打开一个Web页面会创建一个Session对象
[if !supportLists]B. [endif]用户关闭客户端Web页面后,Session对象会立即消失
[if !supportLists]C. [endif]应用程序退出以后,Session对象才会消失
[if !supportLists]D. [endif]每个用户的Session对象不能被其他用户访问
第178题 【多选题】【0.50分】【概念理解】
关于母版页的描述正确的是?
[if !supportLists]A. [endif]母版页是一种“特殊”页面,可以使用html标签、脚本、控件等进行编程
[if !supportLists]B. [endif]母版页不能直接访问
[if !supportLists]C. [endif]母版页文件的后缀是.master
[if !supportLists]D. [endif]母版页需要至少包含一个ContentPlaceHolder控件
第179题 【多选题】【0.50分】【特性分析】
下列系统对象不会针对每一次页面请求都创建一个实例的是()。
[if !supportLists]A. [endif]Response对象
[if !supportLists]B. [endif]Request对象
[if !supportLists]C. [endif]Session对象
[if !supportLists]D. [endif]Application对象
第180题 【多选题】【0.50分】【概念理解】
对POST请求描述正确的是?
[if !supportLists]A. [endif]GET请求方式可以传送二进制数据如音频、视频等文件
[if !supportLists]B. [endif]POST请求方式仅能传送文本给服务器
[if !supportLists]C. [endif]GET请求方式提交的数据会暴露在地址栏,不安全
[if !supportLists]D. [endif]POST请求方式提交的数据则不会暴露在地址栏,安全性高
第181题 【多选题】【0.50分】【概念理解】
对于DropDownList控件,除了设置DataSource属性和调用DataBind方法,还需要设置哪些属性?
[if !supportLists]A. [endif]AutoPostBack
[if !supportLists]B. [endif]DataTextField
[if !supportLists]C. [endif]DataValueField
[if !supportLists]D. [endif]Items
第182题 【多选题】【0.50分】【概念理解】
在ASP.NET中,下列关于Application对象的说法,不正确的是?
[if !supportLists]A. [endif]每次打开一个Web页面会创建一个Application对象
[if !supportLists]B. [endif]用户关闭客户端Web页面后,Application对象会立即消失
[if !supportLists]C. [endif]应用程序退出以后,Application对象才会消失
[if !supportLists]D. [endif]Application对象不能被其他用户访问
第183题 【多选题】【0.50分】【概念理解】
在三层的引用关系中,正确的是?
[if !supportLists]A. [endif]表现层引用业务逻辑层和数据访问层
[if !supportLists]B. [endif]业务逻辑层引用数据访问层
[if !supportLists]C. [endif]数据访问层引用模型层
[if !supportLists]D. [endif]表现层和业务逻辑层引用模型层
第184题 【多选题】【0.50分】【概念理解】
CompareValidator控件执行数据为日期类型检查的步骤包括?
[if !supportLists]A. [endif]设置ValueToCompare和ControlToCompare的值
[if !supportLists]B. [endif]设置Type类型为Date
[if !supportLists]C. [endif]设置Operator的值为Equal
[if !supportLists]D. [endif]设置Operator的值为DataTypeCheck
第185题 【多选题】【0.50分】【概念理解】
下面关于Server对象的方法说法错误的是()[选两项]
[if !supportLists]A. [endif]通过UrlEncode()方法可以解码字符串,使其符合URL地址的格式的要求
[if !supportLists]B. [endif]通过HtmlEncode()方法可以解码字符串,使其在浏览器中的显示与原字符串一致
[if !supportLists]C. [endif]可以通过MapPath()方法返回与Web服务器上实际路径对应的物理文件路径
[if !supportLists]D. [endif]可以用Transfer()方法终止当前页的执行,并在当前请求中执行其他页
第186题 【多选题】【0.50分】【概念理解】
以下那些说法是正确的()。
[if !supportLists]A. [endif]Server对象的Transfer方法会改变地址栏的地址
[if !supportLists]B. [endif]Response对象的Redirect 方法会改变地址栏的地址
[if !supportLists]C. [endif]Response对象的Redirect方法执行的结果是转向后的页面
[if !supportLists]D. [endif]Server 对象的Execute方法执行的结果是由转向前的页面和转向后的页面的合并而成
第187题 【多选题】【0.50分】【概念理解】
以下对B/S模式描述正确的是?
[if !supportLists]A. [endif]客户端需要安装专用的客户端软件
[if !supportLists]B. [endif]客户端统一采用浏览器
[if !supportLists]C. [endif]充分利用两端硬件环境的优势
[if !supportLists]D. [endif]由Web服务端处理客户端请求,并将处理结果逐级传向客户端浏览器
第188题 【多选题】【0.50分】【特性分析】
关于GridView控件,下列说法正确的有()。
[if !supportLists]A. [endif]Columns属性用于获取GridView控件中列字段的集合
[if !supportLists]B. [endif]AllowSorting属性用于启用排序功能
[if !supportLists]C. [endif]每列表示一个字段,而每行表示一条记录
[if !supportLists]D. [endif]PageSize用于设置每次显示的最大记录条数
第189题 【多选题】【0.50分】【概念理解】
三层架构包括?
[if !supportLists]A. [endif]表现层
[if !supportLists]B. [endif]业务逻辑层
[if !supportLists]C. [endif]数据访问层
[if !supportLists]D. [endif]模型层
第190题 【多选题】【0.50分】【结果判断】
在HTML文档中包含如下超链接: 返回 下列选项中,对此链接描述正确的有( )。
[if !supportLists]A. [endif]当鼠标移入此链接时,超链接文本颜色变为红色
[if !supportLists]B. [endif]当鼠标移入此链接时,超链接文本颜色变为蓝色
[if !supportLists]C. [endif]当鼠标移出此链接时,超链接文本颜色变为红色
[if !supportLists]D. [endif]当鼠标移出此链接时,超链接文本颜色变为蓝色
第191题 【多选题】【0.50分】【概念理解】
对于DropDownList控件,除了设置DataSource属性和调用DataBind方法,还需要设置哪些属性?
[if !supportLists]A. [endif]AutoPostBack
[if !supportLists]B. [endif]DataTextField
[if !supportLists]C. [endif]DataValueField
[if !supportLists]D. [endif]Items
第192题 【多选题】【0.50分】【概念理解】
在ASP.NET中的TreeView控件,可使用()作为其数据源。
[if !supportLists]A. [endif]XML文件
[if !supportLists]B. [endif]站点地图文件
[if !supportLists]C. [endif]DataTable
[if !supportLists]D. [endif]DataSet
第193题 【多选题】【0.50分】【特性分析】
下列系统对象不会针对每一次页面请求都创建一个实例的是()。
[if !supportLists]A. [endif]Response对象
[if !supportLists]B. [endif]Request对象
[if !supportLists]C. [endif]Session对象
[if !supportLists]D. [endif]Application对象
第194题 【多选题】【0.50分】【结果判断】
在ASP.NET中,为了在当前页面获得其他页面从地址栏中传递过来的参数ExamLevel的值,以下方法正确的有( )。【选两项】 http://localhost:55212/WebForm1.aspx?ExamLevel=10
[if !supportLists]A. [endif]Request.QueryString[“ExamLevel”];
[if !supportLists]B. [endif]Request.QueryString[1];
[if !supportLists]C. [endif]Request.Form["ExamLevel"];
[if !supportLists]D. [endif]Request[“ExamLevel”];
第195题 【多选题】【0.50分】【概念理解】
ASP.NET支持哪几种开发模式?
[if !supportLists]A. [endif]Web Pages
[if !supportLists]B. [endif]MVC
[if !supportLists]C. [endif]Web Forms
[if !supportLists]D. [endif]Win Forms
第196题 【多选题】【0.50分】【特性分析】
在开发C#程序过程中,会大量地使用类和对象,其中使用方法正确的有( )。
[if !supportLists]A. [endif]先创建类再创建对象
[if !supportLists]B. [endif]先创建对象再创建类
[if !supportLists]C. [endif]通过类调用字段和方法(字段和方法都是非静态的)
[if !supportLists]D. [endif]通过对象调用字段和方法(字段和方法都是非静态的)
第197题 【多选题】【0.50分】【概念理解】
WebGrid分页相关的属性有哪些?
[if !supportLists]A. [endif]allowPaging
[if !supportLists]B. [endif]rowsPerPage
[if !supportLists]C. [endif]canPage
[if !supportLists]D. [endif]pageFieldName
第198题 【多选题】【0.50分】【概念理解】
以下系统对象不会每次页面请求都会创建实例的有()
[if !supportLists]A. [endif]Application
[if !supportLists]B. [endif]Response
[if !supportLists]C. [endif]Request
[if !supportLists]D. [endif]Session
第199题 【多选题】【0.50分】【概念理解】
关于Cookie描述,正确的是?
[if !supportLists]A. [endif]Cookie数据存储在服务器上
[if !supportLists]B. [endif]Cookie数据存储在客户机上
[if !supportLists]C. [endif]Cookie数据安全性较高
[if !supportLists]D. [endif]Cookie可以设置过期时间
第200题 【多选题】【0.50分】【概念理解】
Chart的常见方法有哪些?
[if !supportLists]A. [endif]AddTitle()
[if !supportLists]B. [endif]AddSeries()
[if !supportLists]C. [endif]DataBindTable()
[if !supportLists]D. [endif]Write()