본문 바로가기
ASP.NET

세션에 값 저장하고 가져오기

by BeGeek 2016. 12. 1.

디자인 탭에서 디자인을 하고

WebForm3.aspx.cs에 아래 내용 추가

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebApplication4
{
    public partial class WebForm3 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (Session["UserID"] != null)  //Session에 UserID 값이 있으면 라벨에 출력
            {
                this.lblUserID.Text = Session["UserID"].ToString();
            }
        }

        protected void btnLogin_Click(object sender, EventArgs e)
        {
            Session["UserID"] = txtUserID.Text.ToString(); //Session에 UserID 저장
        }
    }

TextBox에 값을 넣고 Login버튼을 누르면 UserID라는 이름의 세션에 값을 저장하고, 다음에 페이지 로딩시

라벨에 해당 값을 출력한다

 

'ASP.NET' 카테고리의 다른 글

NuGet 통해 필요한 패키지 다운로드 & 설치하기  (0) 2016.12.02
로그인 처리하기  (0) 2016.12.01
쿠키값 설정하고 가져오기  (0) 2016.12.01
값 전달 하기  (0) 2016.12.01
DB에 값 집어 넣고 출력하기  (0) 2016.11.30

댓글