﻿<HandleError()> _
Public Class HomeController
    Inherits System.Web.Mvc.Controller

    Function Index() As ActionResult
        ViewData("Message") = "Welcome to ASP.NET MVC!  See RJM Programming Home Page as Iframe below."
        Return View()
    End Function

    Function About() As ActionResult
        ViewData("Message") = "Welcome (again) to ASP.NET MVC!  See RJM Programming About Us Page as Iframe below."
        Return View()
    End Function

    Function Contact() As ActionResult
        ViewData("Message") = "Welcome (again) to ASP.NET MVC!  See RJM Programming Contact Us Page as Iframe below."
        Return View()
    End Function

    Function Service() As ActionResult
        ViewData("Message") = "Welcome (again) to ASP.NET MVC!  See RJM Programming Service Page as Iframe below."
        Return View()
    End Function

    Function Guestbook() As ActionResult
        ViewData("Message") = "Welcome (again) to ASP.NET MVC!  See RJM Programming Guestbook Page as Iframe below."
        Return View()
    End Function

    Function Links() As ActionResult
        ViewData("Message") = "Welcome (again) to ASP.NET MVC!  See RJM Programming Links Page as Iframe below."
        Return View()
    End Function

    Function News() As ActionResult
        ViewData("Message") = "Welcome (again) to ASP.NET MVC!  See RJM Programming News Page as Iframe below."
        Return View()
    End Function
End Class
