The Link control renders as standard <a> </a> tags.
To make the Link work, the Click event of the Link has to be created and the NavigateToPage action must be added to the event handler.
Add a Link
Properties
Text
The text to be shown in the link.
Url
The url of the link.
Open in New Window
To open the link in a new tab.
Visible
Set to False if you don't want this control to render on the page and be visible to the user.
Assigning data to a Link
Example:
To display a link containing a specific value as text:
Add a SetValue action to assign the value from the query to the Link's Text property.
Example:
To include a URL parameter with a link:
Create the destination page.
In the page's Properties section, add a parameter for the page.
Create a Click event for the link.
Add a NavigateToPage action to the Click event handler
Select your destination page
Select the value to assign to the parameter
On the destination page the parameter will be available to assign (using SetValue) to a control or to a variable for further use in queries or other actions.