mirror of
https://github.com/rudollee/LearningMVC.git
synced 2025-06-07 07:56:14 +00:00
16 lines
305 B
C#
16 lines
305 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
|
|
namespace UrlsAndRoutes.Controllers
|
|
{
|
|
public class LegacyController : Controller
|
|
{
|
|
public ActionResult GetLegacyURL(string legacyURL)
|
|
{
|
|
return View((object)legacyURL);
|
|
}
|
|
}
|
|
} |