Anonymous or Substitute Handlers
Introduction
model.Partial = Self.GET("/custom-url", () =>
{
return new Page()
{
Html = "/custom-page.html"
};
});Things to Know About Anonymous Handlers
When to Use Anonymous Handlers
Shared UI Sections
UI View Composition with Layout Editor
Last updated