I have a list of records in power pages contact form, where i want the email associated with that view appear in another form (redirected to another page ).Here i want the same email appear to this form(Question form) for user to submit . any links or documentation related to this
On the list/form page (where you're showing Contact records), modify the link to redirect with the email in the URL
Or in Web Template for each row in the list:
{% for contact in contacts %}
<tr>
<td>{{ contact.fullname }}</td>
<td>{{ contact.emailaddress1 }}</td>
<td>
<a href="/question-form-page?email={{ contact.emailaddress1 }}">Ask Question</a>
</td>
</tr>
{% endfor %}
Add this script in the Web Page > Page Copy (HTML) or in a Web File attached to the page:
To pass the email address (or any other field value) from one form to another in Microsoft Power Pages, especially when redirecting between pages, you can use query string parameters. Here's how you can do it:
email
emailaddress1
This will redirect the user to the next page with the email in the URL like:
email
) to pre-fill the email field.
Fubar
69
Super User 2025 Season 1
oliver.rodrigues
49
Most Valuable Professional
Jon Unzueta
43