Contains various support functionality for dealing with URIs.
Namespace:
EPiServerAssembly: EPiServer (in EPiServer.dll) Version: 6.0.530.0
Syntax
| C# |
|---|
public class UriSupport |
Remarks
See the UriSupport class methods which contain further information.
Examples
See the examples below:
Resolves the path relative the UI directory
UriSupport.ResolveUrlFromUtilBySettings("javascript/episerverscriptmanager.js");link a page to another language than the current language
PageData languageBranch = new PageData(CurrentPage);
EPiServer.UriSupport.AddLanguageSelection(pd.LinkURL, pd.LanguageID);link a page to another language than the current language
// link a page to another language than the current language
String NavigateUrl = EPiServer.UriSupport.AddLanguageSelection(languageBranch.LinkURL, languageBranch.LanguageID);