- 104
Thanks a lot Ivan .. I find out the answer just a bit after I wrote this ... find it your forum
Have a nice day
Yves
Have a nice day
Yves
string currentstore=HttpContext.Current.Request.ServerVariables["HTTP_HOST"];
if (Model.Settings.IncludeContactUsLink)
{
<li>
if (currentstore == "www.store1domain.com")
{
<a href="@Url.RouteUrl("ContactUs")" title="@T("ContactUs")">@T("ContactUs")</a>
}
else
{
<a href="@Url.RouteUrl("ContactUs2")" title="@T("ContactUs")">@T("ContactUs")</a>
}
</li>
}