-3

I have below which is C# string builder code and currrently when the user clicks the hyperlink it opens it in the background, I need it to open in a new tab or perhaps a window once hyperlink is clicked. Please advise

sb.Append("<td><a href=\"" + baseMMPUrlConfigValue + "/profile/supplier/" + organisation.Id + "\">Profile Link</a></td>");

1 Answers1

0

Replace the above line in your code with the line below and this should do the magic for you.

sb.Append("<td><a target=\"_blank\" href=\"" + baseMMPUrlConfigValue + "/profile/supplier/" + organisation.Id + "\">Profile Link</a></td>");