Beispiel #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            Configuration.CheckPageLoad(HttpContext.Current.Request.Url);

            var doberman = new Doberman();
            var result = doberman.Run(doberman.Fetch((DobermanConfiguration)Configuration));

            DobermanResponse.Output(Context, result);
        }
        public void Index()
        {
            Configuration.CheckPageLoad(Request.Url);

            var doberman = new Doberman();
            var result = doberman.Run(doberman.Fetch((DobermanConfiguration)Configuration));

            DobermanResponse.Output(System.Web.HttpContext.Current, result);
        }