get rooturl in view in asp.net core code example
Example: asp.net core get root url in view
FOR ASP.NET CORE:
public WhateverController(IHttpContextAccessor context) //In the constructor
{
var request = context.HttpContext.Request;
var _baseURL = $"{request.Scheme}://{request.Host}"; // http://localhost:5000
}