ASP.NET英文面试题附答案(3)

匿名网友 匿名网友 发布于: 2015-08-30 00:00:00
阅读 133 收藏 0 点赞 0 评论 0

28.What base class do all Web Forms inherit from?

The Page class.

29.Name two properties common in every validation control?

ControlToValidate property and Text property.

30.What tags do you need to add within the asp:datagrid tags to bind columns manually?

Set AutoGenerateColumns Property to false on the datagrid tag

31.What tag do you use to add a hyperlink column to the DataGrid?

32.What is the transport protocol you use to call a Web service?

SOAP is the preferred protocol.

33.True or False: A Web service can only be written in .NET?

False

34.What does WSDL stand for?

Web Services Description Language

35.Where on the Internet would you look for Web services?

http://www.uddi.org

36.Which property on a Combo Box do you set with a column name, prior to setting the DataSource, to display data in the combo box?

DataTextField property

37.Which control would you use if you needed to make sure the values in two different controls matched?

CompareValidator Control

38.True or False: To test a Web service you must create a windows application or Web application to consume this service?

False, the webservice comes with a test page and it provides HTTP-GET method to test.

39.How many classes can a single .NET DLL contain?

It can contain many classes.

评论列表
文章目录