Craig100
04/09/2024, 10:26 AMstring? location = HttpContextAccessor.HttpContext?.Request.Form["location"].ToString();
The same page invokes a form like so:-
```
@if (categoryPage.FormPicker.HasValue) {
@await Component.InvokeAsync("RenderForm", new { formId = @categoryPage.FormPicker.Value, theme = "MyTheme", includeScripts = false })
}
'''
Is there any way I can get the "location" value into a hidden field in the form? The docs & googling aren't telling me but I don't think it's an unreasonable thing to want to do.
Thanks.Matt Wise
04/09/2024, 10:30 AMCraig100
04/09/2024, 11:10 AM