Mega Code Archive

 
Categories / ASP.Net / Session Cookie
 

Get value from session in cross page posting(VB)

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="_Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server">     <title>Session State</title> </head> <body>     <form id="form1" runat="server">     <div>         <asp:TextBox ID="TextBox1" Runat="server"></asp:TextBox>         <asp:Button ID="Button1"                      Runat="server"                      Text="Store in Session"                      OnClick="Button1_Click" />         <asp:HyperLink ID="HyperLink1"                         Runat="server"                         NavigateUrl="NextPage.aspx">Next Page</asp:HyperLink>     </div>     </form> </body> </html> File: Default.aspx.vb Partial Class _Default     Inherits System.Web.UI.Page     Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click         Session("mykey") = TextBox1.Text     End Sub End Class File: NextPage.aspx <%@ Page Language="VB" AutoEventWireup="false" CodeFile="NextPage.aspx.vb" Inherits="Retrieve" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server">     <title>Untitled Page</title> </head> <body>     <form id="form1" runat="server">     <div>          </div>     </form> </body> </html> File: NextPage.aspx.vb Partial Class Retrieve     Inherits System.Web.UI.Page     Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load         Dim myValue As String = CType(Session("mykey"), String)         Response.Write(myValue)     End Sub End Class