protected void Page_Load(object sender, EventArgs e) { try { string usercd = Page.Request.QueryString.Get("usercd"); if (!string.IsNullOrEmpty(usercd)) { System.Diagnostics.Debug.WriteLine(usercd); // ログインチェック if (CommonWebServiceProc.AutoLogin(usercd) == 0) { // 検索画面にリダイレクト Response.Redirect("./webSearch.aspx"); HttpContext.Current.Session["usercd"] = usercd; } } } catch { } }
public int AutoLogin(string usercd) { return(CommonWebServiceProc.AutoLogin(usercd)); }