Skip to content

Instantly share code, notes, and snippets.

@ramazankanbur
Created December 21, 2021 18:43
Show Gist options
  • Save ramazankanbur/8de065833e5c1c10663104e7a3412222 to your computer and use it in GitHub Desktop.
Save ramazankanbur/8de065833e5c1c10663104e7a3412222 to your computer and use it in GitHub Desktop.
public class HomeController : Controller
{
[MobileRedirect]
public IActionResult Index()
{
return View();
}
public IActionResult OnlyDesktop()
{
return View();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment