多项选择题
You are implementing an ASP.NET Web application. Users will authenticate to the application with an ID. The application will allow new users to register for an account. The application will generate an ID for the user based on the users full name. You need to implement this registration functionality. Which two actions should you perform?()
A.Configure the SqlMembershipProvider in the web.config file.
B.Configure the SqlProfileProvider in the web.config file.
C.Create an ASP.NET page that contains a default CreateUserWizard control to create a new user account.
D.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.
相关考题
-
多项选择题
YouareimplementinganASP.NETMVC2Webapplication.YouaddacontrollernamedCompany Controller.YouneedtomodifytheapplicationtohandletheURLpath/company/info.Whichtwoactionsshouldyouperform?()
A.Add the following method to the CompanyController class. Function Info() As ActionResult Return View() End Function
B.Add the following method to the CompanyController class. Function Company_Info() As ActionResult Return View() End Function
C.Right-click the Views folder, and select View from the Add submenu to create the view for the action.
D.Right-click inside the action method in the CompanyController class, and select Add View to create a view for the action -
单项选择题
YouaredevelopinganASP.NETMVC2Webapplication.TheapplicationcontainsacontrollernamedHomeController,whichhasanactionnamedIndex.TheapplicationalsocontainsaseparateareanamedBlog.AviewwithintheBlogareamustcontainanActionLinkthatwilllinktotheIndexactionoftheHomeController.YouneedtoensurethattheActionLinkintheBlogarealinkstotheIndexactionoftheHomeController.WhichActionLinkshouldyouuse?()
A.Html.ActionLink("Home", "Index", "Home")
B.Html.ActionLink("Home", "Index", "Home", New With {.area = ""}, Nothing)
C.Html.ActionLink("Home", "Index", "Home", New With {.area = "Blog"}, Nothing)
D.Html.ActionLink("Home", "Index", "Home", New With {.area = "Home"}, Nothing) -
单项选择题
YouaredevelopinganASP.NETMVC2Webapplication.ApagemakesanAJAXrequestandexpectsalistofcompanynamesinthefollowingformat.["AdventureWorks","Contoso"]Youneedtowriteanactionmethodthatreturnstheresponseinthecorrectformat.Whichtypeshouldyoureturnfromtheactionmethod?()
A.AjaxHelper
B.XDocument
C.JsonResult
D.DataContractJsonSerializer
