Hi
If like me you want to use the StarterSite on something other than ****t
80, you will have to fix the App_Code\SiteContext.cs file.
Replace line 248, from
builder.****t = -1; // Removes the ****t
to
if(secure)
{
builder.****t = HttpContext.Current.Request.Url.****t ==
443 ? -1 : HttpContext.Current.Request.Url.****t;
}
else
{
builder.****t = HttpContext.Current.Request.Url.****t ==
80 ? -1 : HttpContext.Current.Request.Url.****t;
}
return builder.Uri;
Cheers
Phil