如何在我的 ascx 页面上的 hyper link 前面添加普通文本

How can I add normal text in front of a hyper link on my ascx page

我想在超级 link 文本前添加普通文本。 我正在添加我的 hyper link,如下面的代码所示

如何在 Text = "PreRegistration Work Queues" 前添加一个 "Go To"?

<td>
            <asp:HyperLink ID="hyperlink2"
            NavigateUrl="../WorkQueues.aspx"
            Text= "Pre-Registration Work Queues"
            Target="_new"
            runat="server" />
</td>

您可以只在此处添加文本,也可以添加 ASP Label

<asp:Label id="GoToLabel" Text="Go To" runat="server"/>