Skip to main content

Razor Page Service Tutorials

Tutorial Home

IPageService set Base tag in header

This page sets the Base tag in the header. Look at the source of this page to see the result.
There are two ways to do this:
  • IPageService.SetBase() will auto-detect the current base. It's extra smart, so the result will also work on the home page of a portal.
  • IPageService.SetBase("/some/page") create the base tag with the specified url.

Info about the Base Class

This tutorial inherits from the Custom.Hybrid.Razor14 base class.

This allows us to use Kit.Page to access IPageService without having to use GetService<>


@{
  Kit.Page.SetBase();
}

Source Code of this file

Below you'll see the source code of the file. Note that we're just showing the main part, and hiding some parts of the file which are not relevant for understanding the essentials. Click to expand the code

@inherits Custom.Hybrid.Razor14
@using ToSic.Razor.Blade;
<!-- unimportant stuff, hidden -->
IPageService set Base tag in header This... <!-- unimportant stuff, hidden -->

@Html.Partial("../shared/_KitBaseClassInfoBox.cshtml", new { ServiceName = "Page", Service = "IPageService" })


@{
  Kit.Page.SetBase();
}




<!-- unimportant stuff, hidden -->