918博天堂

Server : Microsoft-IIS/10.0
System : Windows NT EBS-6136 10.0 build 17763 (Windows Server 2016) i586
User : jxgj ( 0)
PHP Version : 7.0.33
Disable Function : passthru,exec,system,shell_exec,proc_open,popen,pcntl_exec,socket_bind,stream_socket_server
Directory :  D:/tmp_aspnet/root/54f3ceba/6be944cd/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : D:/tmp_aspnet/root/54f3ceba/6be944cd/App_Web_rtgjmj5s.1.cs
?#pragma checksum "D:\wwwroot\klbttc\wwwroot\MasterPage.master.cs" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "56DFFF54DD610EA44C4BFA7ECE565EB2BCEF1E80"

#line 1 "D:\wwwroot\klbttc\wwwroot\MasterPage.master.cs"
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class MasterPage : System.Web.UI.MasterPage
{
    protected void Page_Load(object sender, EventArgs e)
    {
        var reqParam = Request.QueryString;
        foreach (var item in reqParam.AllKeys)
        {
            if (item == "mid")
            {
                var midStr = Request.QueryString["mid"].ToString();
                int mid = 0;
                var isTrySuccess = int.TryParse(midStr, out mid);
                if (!isTrySuccess)
                {
                    //Response.End();
                    Response.Redirect("/");
                }
            }

            if (item == "cid")
            {
                var midStr = Request.QueryString["cid"].ToString();
                int cid = 0;
                var isTrySuccess = int.TryParse(midStr, out cid);
                if (!isTrySuccess)
                {
                    //Response.End();
                    Response.Redirect("/");
                }
            }
        }
    }
}


#line default
#line hidden