Question

I'm trying to to create a link on one web application to another web application using C#.

Code is running on:

http://portal

I want to create a link to http://my.

The farm is also available on a FQDN domain:

http://portal.company.local

http://my.company.local

So what is the best code or control to create a link to the other AAM web application? At the moment I'm doing something like this:

<%= SPWebApplication.Lookup(
        new Uri("http://my")).AlternateUrls.
            GetResponseUrl(SPAlternateUrl.Lookup(
                new Uri(SPContext.Current.Web.Url)).UrlZone).Uri %>

It works, but I'm not sure if this is the right and performant way.

Any ideas?

Was it helpful?

Solution

Looks good to me! I'm pretty sure you can only look up AAM URLs via SPWebApplication so this is the way to do it.

If you are concerned about performance, measure the difference between when you have this on the page and when you remove it. ASP.NET Tracing is one option that can help.

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top