Html.ActionLink(Home, Index, Home)
Html.ActionLink(Home, Index, Home, new {area = }, null)
Html.ActionLink(Home, Index, Home, new {area = Blog}, null)
Html.ActionLink(Home, Index, Home, new {area = Home}, null)
第1题:
You have a Microsoft ASP.NET Framework version 1.0 application. The application does not use any features that are deprecated in the Microsoft .NET Framework version 3.5. The application runs on Microsoft IIS 6.0. You need to configure the application to use the ASP.NET Framework version 3.5 without recompiling the application. What should you do?()
第2题:
You are developing an ASP.NET Web page. The page includes a List
第3题:
You are developing an ASP.NET Web page that will display the median value from a sequence of integer values. You need to create an extension method to compute the median value. Which interface should you add the extension method to?()
第4题:
You work as an ASP.NET Web Application Developer for SomeCompany. The company uses Visual Studio .NET 2010 as its application development platform. You create an ASP.NET Web application using .NET Framework 4.0. You create a Web page in the application. The Web page will get large sets of data from a data source. You add a DataPager control to the page. You are required to display navigation controls that enable you to create a custom paging Ul for the DataPager control. What will you do?()
第5题:
Configure the SqlMembershipProvider in the web.config file.
Configure the SqlProfileProvider in the web.config file.
Create an ASP.NET page that contains a default CreateUserWizard control to create a new user account.
Create an ASP.NET page that contains a custom form that collects the user information and then uses the Membership.CreateUser method to create a new user account.
第6题:
Master
Default
Shared
Common
第7题:
Configure the Windows Authentication setting to Enabled.
Configure the Forms Authentication setting to Enabled by using all the default settings.
Configure the ASP.NET State service to log on to the new local user account by using the Services console.
Configure the ASP.NET Impersonation setting to Enabled. Edit the ASP.NET Impersonation setting by specifying the new local user account.
第8题:
OnLoad
Construct
OnDataBinding
SaveControlState
第9题:
The ASP.NET Impersonation setting should be configured to Enabled. Edit the ASP.NET Impersonation setting by specifying the new local user account.
The Windows Authentication setting should be configured to Enabled.
The Forms Authentication setting should be configured to Enabled by using all the default settings.
The ASP.NET State Service should be configured to log on to the new local user account by using the Services console.
第10题:
AjaxHelper
XDocument
JsonResult
DataContractJsonSerializer
第11题:
You are developing an ASP.NET Web application. You create a master page. The master page requires a region where you can add page-specific content by using the ASP.NET page designer. You need to add a control to the master page to define the region. Which control should you add?()
第12题:
You are developing an ASP.NET Web application. The application must pass an object that contains user-specific data between multiple pages. The object ismore than 100 KB in size when serialized.You need to minimize the amount of data is sent to the user. What should you do?()
第13题:
You are developing an ASP.NET Web application. You create a master page. The master page requires a region where you can add page-specific content by using theASP.NET page designer. You need to add a control to the master page to define the region. Which control should you add?()
第14题:
<%: Model.FirstName %>
<%= Model.FirstName %>
<% Response.Write(Model.FirstName) %>
<% Response.Write(HttpUtility.HtmlDecode(Model.FirstName)) %>
第15题:
Html.ActionLink(Home, Index, Home)
Html.ActionLink(Home, Index, Home, New With {.area = }, Nothing)
Html.ActionLink(Home, Index, Home, New With {.area = Blog}, Nothing)
Html.ActionLink(Home, Index, Home, New With {.area = Home}, Nothing)
第16题:
IComparer<T>
IEnumerable<T>
IEnumerator<T>
IEqualityComparer<T>
第17题:
In the Web.config file of the application,set the Theme attribute of the pages element to the name of the theme.
In the Web.config file of the application,set the StyleSheetThemeattribute of the pages element to the name of the theme.
Add a master page to the application. In the @Master directive,set the Theme attribute to the name of the theme.
Add a master page to the application. In the @Master directive,set the StyleSheetTheme attribute to the name of the theme.
第18题:
<%= Html.ActionLink(MyTest, MyHome, new {area = test}, null)%>
<%= Html.RouteLink(MyHome, MyTest, new {area = test}, null)%>
<%= Html.RouteLink(MyTest, MyHome, MyTest, new {area = test}, null)%>
<%= Html.ActionLink(MyTest, MyHome, MyTest, new {area = test}, null)%>
第19题:
You should use the page directive: <%@ Page StyleSheetTheme=App_Themes.Dark/>
You should use the page directive: <%@ Page Theme=App_Themes.Dark/>
You should use the page directive: <%@ Page Theme=Dark/>
You should use the page directive: <%@ Page StyleSheetTheme=Dark/>