using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; namespace WebInterface.Controllers { /// /// Invalid user agent notification controller /// public class InvalidUAController : Controller { // GET: InvalidUA [AllowAnonymous] public ActionResult InvalidUserAgent() { return View(); } } }