Hi,
i have found a BUG
Click on Mail Button on a Post redirects you to Forbidden Page
so i have locked into the Code and seen the Convertig of UserID string to int have a Problem
/// <summary>
/// Gets UserID.
/// </summary>
public int UserId
{
get
{
return Security.StringToLongOrRedirect(this.Get<HttpRequestBase>().QueryString["u"]).ToTyped<int>();
}
}
´
In my Example i get a string "35" from QueryString and the ToTyped<int> gets 0 as int
Thanks