Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to pass the absolute url of the current page to sharing services of facebook/twitter/linkedin. How do I get the absolute url of a page from a xslt rendering

share|improve this question
"Rendering" meaning an XSLT rendering? – Sean Kearney Nov 22 '10 at 15:35
Sean Kearney, yep. – vitaliy kotik Nov 23 '10 at 14:14

2 Answers

up vote 5 down vote accepted

I can at least tell you how this is done in a .NET sublayout, not sure if that helps:

Sitecore.Links.UrlOptions urlOptions = new Sitecore.Links.UrlOptions();
urlOptions.AlwaysIncludeServerUrl = true;
string url = Sitecore.Links.LinkManager.GetItemUrl(Sitecore.Context.Item, urlOptions);

Set other options on urlOptions as appropriate.

Happy coding.

share|improve this answer

I realize this is an old question, but the answer given really isn't the full picture. You can build an XSLT extension to handle this:

public class XslExtensions : Sc.Xml.Xsl.XslHelper {
    public string GetUrl(XPathNodeIterator iterator)
    {
        Sc.Data.Items.Item item = this.GetRequiredItem(iterator);
        return item.GetUrl(); // Extension method for Item that returns the URL as a string
    }

    public Sc.Data.Items.Item GetRequiredItem(XPathNodeIterator iterator)
    {
        Sc.Diagnostics.Assert.IsNotNull(iterator, "iterator");

        if (!iterator.MoveNext())
        {
            XsltException ex = new XsltException("No iterator.");
            Sc.Diagnostics.Log.Error(ex.Message, ex, this);
            throw ex;
        }

        Sc.Data.Items.Item item = this.GetItem(iterator);

        if (item == null)
        {
            XsltException ex = new XsltException("No item.");
            Sc.Diagnostics.Log.Error(ex.Message, ex, this);
            throw ex;
        }

        return item;
    }
}

Then you need to add the class that holds the above to the <xslExtensions> node:

<extension mode="on" type="MyProject.XslExtensions, MyProject" namespace="http://myproject.com/extensions" singleInstance="true" />

And finally you can use the method. First reference the extensions...

<xsl:stylesheet version="1.0"
    xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    xmlns:sc="http://www.sitecore.net/sc"
    xmlns:sql="http://www.sitecore.net/sql"
    xmlns:myp="http://myproject.com/extensions"
    exclude-result-prefixes="sc sql myp">

Then use!

<xsl:value-of select="myp:GetUrl(.)" />
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.