Questions
- Which one of the following is a recommended page to define the left-side navigation that needs to appear throughout the web application?
a.
_ViewStart.cshtml
b.
_ViewImports.cshtml
c.
_Layout.cshtml
d.
Error.cshtml
- Which of the following pages can be used to configure the
Layout
page for the entire application?a.
_ViewStart.cshtml
b.
_ViewImports.cshtml
c.
_Layout.cshtml
d.
Error.cshtml
- Which of the following special characters is used to write Razor syntax in a
.cshtml
page?a.
@
b.
#
c.
<% %>
d. None of the above
- Which method will be called on a button click in the following tag helper code in a Razor page application?
<input type='submit' asp-page-handler='Delete' value='Delete' />
a.
OnGet()
b.
onDelete()
c.
OnPostDelete()
d.
OnDeleteAsync()