Code: Select all
#if(Page.Url = "thispage.aspx")
<a href="thatpage.aspx">That Page</a>
#end
Code: Select all
#if(Page.Url = "thispage.aspx")
<a href="thatpage.aspx">That Page</a>
#end
Well, actually.... For page level stuff, what you would see in your website content scriptlets, we always provide these variables to you:mazhar wrote:Page information is not available through NVelocity scripts in AbleCommerce.
Code: Select all
#if(page.Request.Url == "http://mydomain/mypath/thispage.aspx")
<a href="thatpage.aspx">That Page</a>
#end