|
|
|
ใช้ Session ใน C# อยากได้ตัวอย่างการใช้... C#,Session,ASP.NET |
|
|
|
|
|
|
|
ผมทำบทความ C# เสร็จแล้วน่ะครับ แต่กำลังจะเอาขึ้นเว็บครับ
Code (AspNetSession1.aspx)
<%@ Page Language="C#" Debug="true" %>
<script runat="server">
void Page_Load(Object sender , EventArgs e)
{
//*** Create Session ***//
Session.Timeout = 20;
Session["SiteName"] = "www.ThaiCreate.Com";
Session["Name"] = "Mr.Weerachai Nukitram";
this.lblText.Text = "Session Created";
this.hplLink.Text = "Click here to check";
this.hplLink.NavigateUrl = "AspNetSession2.aspx";
}
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - Session Object</title>
</head>
<body>
<form runat="server">
<asp:Label id="lblText" runat="server"></asp:Label><br /><br />
<asp:HyperLink id="hplLink" runat="server"></asp:HyperLink><br />
</form>
</body>
</html>
Code (AspNetSession2.aspx)
<%@ Page Language="C#" Debug="true" %>
<script runat="server">
void Page_Load(Object sender , EventArgs e)
{
//*** Read Session ***//
Response.Write("Site Name = " + Session["SiteName"] + "<br>");
Response.Write("Name = " + Session["Name"] + "<br><br>");
this.hplLink.Text = "Click here to delete";
this.hplLink.NavigateUrl = "AspNetSession3.aspx";
}
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - Session Object</title>
</head>
<body>
<form runat="server">
<asp:HyperLink id="hplLink" runat="server"></asp:HyperLink><br />
</form>
</body>
</html>
Code (AspNetSession3.aspx)
<%@ Page Language="C#" Debug="true" %>
<script runat="server">
void Page_Load(Object sender , EventArgs e)
{
//Session.Abandon()
Session["SiteName"] = null;
Session["Name"] = null;
this.lblText.Text = "Now Cookie Deleted";
this.hplLink1.Text = "Click here to check";
this.hplLink1.NavigateUrl = "AspNetSession2.aspx";
this.hplLink2.Text = "Click here to create";
this.hplLink2.NavigateUrl = "AspNetSession1.aspx";
}
</script>
<html>
<head>
<title>ThaiCreate.Com ASP.NET - Session Object</title>
</head>
<body>
<form runat="server">
<asp:Label id="lblText" runat="server"></asp:Label><br /><br />
<asp:HyperLink id="hplLink1" runat="server"></asp:HyperLink><br />
<asp:HyperLink id="hplLink2" runat="server"></asp:HyperLink><br />
</form>
</body>
</html>
|
|
|
|
|
Date :
2009-04-19 09:46:12 |
By :
webmaster |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคะ ลองใช้แร้ว ได้ผลแร้วคะ ^^
|
|
|
|
|
Date :
2009-05-06 14:01:47 |
By :
semi-colon |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณมากๆ ค่ะ
|
|
|
|
|
Date :
2009-10-26 16:16:54 |
By :
noonoy42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณ ค่ะ
ตอนนี้ กำลังทำโปรเจค social เว็บอยู่
ใครมีเครื่องมืออะไรแนะนำด้วยนะค่ะ
[email protected]
ขอบคุณ ค่ะ
|
|
|
|
|
Date :
2010-04-21 09:53:57 |
By :
cs49101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2011-03-29 06:15:58 |
By :
:eek: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ขอบคุณคับ ใช้แล้วได้ผลดี
|
|
|
|
|
Date :
2011-07-20 14:59:20 |
By :
lukawa_small |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ว้าว social network รายละเอียดมันเยอะนะคะ
เอ้าค่ะสู้เค้าค่ะ
|
|
|
|
|
Date :
2011-07-20 15:16:33 |
By :
ยัยจืด |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 05
|