Advertisement
Guest User

Untitled

a guest
Jul 10th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 0.99 KB | None | 0 0
  1. using System;
  2. using System.Collections;
  3. using System.Configuration;
  4. using System.Data;
  5. using System.Linq;
  6. using System.Web;
  7. using System.Web.Security;
  8. using System.Web.UI;
  9. using System.Web.UI.HtmlControls;
  10. using System.Web.UI.WebControls;
  11. using System.Web.UI.WebControls.WebParts;
  12. using System.Xml.Linq;
  13.  
  14. public partial class A_13 : System.Web.UI.Page
  15. {
  16.     protected void Page_Load(object sender, EventArgs e)
  17.     {
  18.         if (Session["name"] != null)
  19.         {
  20.             Response.Write(Session["name"].ToString()+"<br>");
  21.             Response.Write(Session["add"].ToString() + "<br>");
  22.             Response.Write(Session["phone"].ToString());
  23.         }
  24.         if (Application["name"] != null)
  25.         {
  26.             Response.Write(Application["name"].ToString() + "<br>");
  27.             Response.Write(Application["add"].ToString() + "<br>");
  28.             Response.Write(Application["phone"].ToString());
  29.         }
  30.         Response.Write(Request.QueryString.ToString());
  31.     }
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement