public static void BackToSender(PreviousPageInfo pp)
        {
            if (null == pp)
                throw new ArgumentNullException("pp");

            //HttpContext.Current.Server.Transfer(pp.SenderPage.PhysicalFile);// en sonunda Route' a geçilecek.
            HttpContext.Current.Response.Redirect(pp.SenderPage.PhysicalFile);// Ajax Panel de sıkıntı çıkardığı için eklendi.
        }
        public static void GoToDest(PreviousPageInfo pp)
        {
            if (null == pp)
                throw new ArgumentNullException("pp");

            //HttpContext.Current.Server.Transfer(pp.DestPage.PhysicalFile + "?pp=" + pp.BinarySerialize());// en sonunda Route' a geçilecek.
            HttpContext.Current.Response.Redirect(pp.DestPage.PhysicalFile + "?pp=" + Utility.ToQueryString(pp));// pp.BinarySerialize());// Ajax Panel de sıkıntı çıkardığı için eklendi.
        }