Using Net Core 6 I have the following Page Model:
public class IndexModel : PageModel {
public String AvatarUrl { get; set; }
public IndexModel() { }
public void OnGet() {
AvatarUrl = Url.Content("~/avatar.jpg");
}
}
How to get Absolute Content's Url instead?
CodePudding user response: