분류 전체보기303 세션에 값 저장하고 가져오기 디자인 탭에서 디자인을 하고 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... 2016. 12. 1. 쿠키값 설정하고 가져오기 쿠키 설정하기 WebForm1.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 WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { Response.Cookies["UserID"].Value = "TestID"; //쿠키 생성 Response.Write("쿠키가 생성되었습니다"); } } } 쿠키 읽어오기 .. 2016. 12. 1. 값 전달 하기 Sample01.aspx -> Sample02.aspx -> Sample03.aspx로 값 전달 Sample01.aspx Sample02.aspx Sample03.aspx 위에는 get방식으로 넘기고 받기고, post방식으로 넘기고 받으려면 html form태그의 method는 post로 바꾸고 받는곳에서는 대신 처럼 Request.Form["UserID"] 로 받는다. 2016. 12. 1. DB에 값 집어 넣고 출력하기 WebForm1.aspx 소스 디자인 탭에서 TextBox 및 Button 추가한 후 코드비하인드 cs파일에 코딩 WebForm1.aspx.cs using System; using System.Collections.Generic; using System.Data.SqlClient; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Data; namespace WebApplication3 { public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs.. 2016. 11. 30. 이전 1 ··· 60 61 62 63 64 65 66 ··· 76 다음