单项选择题YouworkasanASP.NETWebApplicationDeveloperforSomeCompany.ThecompanyusesVisualStudio.NET2010asitsapplicationdevelopmentplatform.YoucreateanASP.NETMVC2Webapplicationusing.NETFramework4.0.YouimplementasingleprojectareaintheMVC2Webapplication.IntheAreasfolder,youaddasubfoldernamedMyTest.Youaddthefollowinglestotheappropriatesub-folders:MyController.csMyHome.aspxYouregisterarouteofthearea,settingtheroutenametoMyTest_defaultandtheareanametotest.YoucreateaviewnamedMyViews.aspxthatisoutsidethetestarea.YouneedtoaddalinktoMyViews.aspxthatpointstoMyHome.aspx.Whichofthefollowingcodesegmentswillyouuse?()
A.<%= Html.ActionLink("MyTest", "MyHome", new {area = "test"}, null)%>
B.<%= Html.RouteLink("MyHome", "MyTest", new {area = "test"}, null)%>
C.<%= Html.RouteLink("MyTest", "MyHome", "MyTest", new {area = "test"}, null)%>
D.<%= Html.ActionLink("MyTest", "MyHome", "MyTest", new {area = "test"}, null)%>