문제

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?

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top