Try our conversational search powered by Generative AI!

StaticLinkURL and globalisation

Vote:
 
Hi How can I get this code to work with other languages then the default language. PageReference pr = new PageReference(148); PageData pg = Global.EPDataFactory.GetPage(pr); link = pg.StaticLinkURL This code gives the default language for the page not the current language.
#13189
Sep 05, 2007 0:00
Vote:
 
try some thing like this. PageReference pr = new PageReference(148); LanguageSelector ls = new LanguageSelector(LanguageContext.Current.CurrentLanguageBranch); PageData pg = Global.EPDataFactory.GetPage(pr, ls); string link = pg.StaticLinkURL; //Or if you dont really need det pageData, just the url string link = pp.DetermineAutomaticURL(LanguageContext.Current.CurrentLanguageBranch); Thomas Leela, Epinova
#15514
Sep 05, 2007 14:07
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.