Rendering Forms
Learn the different ways of rendering a form on your website when using Umbraco Forms.
There are three options available for rendering a form.
Rendering Using a View Component
To display a form in your view, you can make a call to a view component:
Six parameters can be provided:
formId
is the GUID of a form.theme
is the name of a theme. If not provided, the default theme is used (see Themes).includeScripts
indicates whether scripts should be rendered with the form (see Rendering Scripts.recordId
is an optional existing record GUID, used if editing records via the website is enabled in configurationredirectToPageId
is an optional GUID for a content page that, if provided, is redirected to once the form has been submitted. It will be used in preference to post-submission behavior defined on the form itself.additionalData
is an optional dictionary of string values. When provided it will be used as a source for "magic string" replacements. The data will be associated with the created record and made available for custom logic or update within workflows.
Usually, rather than hard-coding the form's GUID and other details, you'll use a form, theme or content picker on your page:
Rendering Using a Tag Helper
If you prefer a tag helper syntax, you can use one that ships with Umbraco Forms.
Firstly, in your _ViewImports.cshtml
file, add a reference to the Umbraco Forms tag helpers with:
Then in your view you can use:
Rendering Using a Macro
With a grid or Rich Text Editor, you need to use a macro. This is also available as an option to display a form in your view, where you provide three parameters:
FormGuid
is the GUID of a form.FormTheme
is the name of a theme. If not provided, the default theme is used.ExcludeScripts
takes a value of 0 or 1, indicating whether scripts should be excluded from rendering.RedirectToPageId
is an optional picked content item that, if provided, is redirected to once the form has been submitted. It will be used in preference to post-submission behavior defined on the form itself.
Similarly, you can reference a form picker property on your page:
Last updated