Session Cookie ASP.Net

<%@ Page Language="vb" %>

   
      
  Sub Page_Load()
     Dim i As Integer
           Dim nv As NameValueCollection
           nv = HttpContext.GetAppConfig("appSettings")
           For i = 0 To nv.Count - 1
              Response.Write(nv.GetKey(i) & " = " & nv(i) & "
")
           Next
  End Sub
      
   

   


<%--


   
      
      
   


--%>