You have already seen some Page Object methods in use:
@RenderPage("header.cshtml")
@RenderBody()
@RenderBody()
In the previous chapter you saw two Page Object properties being used (IsPost, and Request):
If (IsPost) {
if (Request["Choice"] != null) {
if (Request["Choice"] != null) {
Practice Excercise Practice now