zoukankan      html  css  js  c++  java
  • net1:post,get方式传值,读写cookie,读XML文件,写script语句,跳转页面,response与request类

    原文发布时间为:2008-07-29 —— 来源于本人的百度文章 [由搬家工具导入]

    using System;
    using System.Data;
    using System.Configuration;
    using System.Collections;
    using System.Web;
    using System.Web.Security;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Web.UI.WebControls.WebParts;
    using System.Web.UI.HtmlControls;

    public partial class Default5 : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            if (Request.QueryString["name"]!=null&&Request.QueryString["age"]!=null)
            {
                Response.Write(Request.QueryString["name"] + "<br>" + Request.QueryString["age"]+"<br>");
                Response.Write(Request.RequestType);
            }
        }
        protected void Button1_Click(object sender, EventArgs e)
        {
           // string d = Request.Form["name"];
           // string c = Request.Form["age"];

           string d = Request["name"];
           string c = Request["age"];

           Response.Write(d + "<br>" + c + "<br>");
           Response.Write(Request.RequestType);
           Response.Write("<br>"+"wang ye xu ni lujin:" + Request.RawUrl+"<br>");
           Response.Write("shi ji lujin:" + Request.PhysicalPath+ "<br>");
           Response.Write("IP:" + Request.UserHostAddress + "<br>");
           Response.Write("xi tong:" + Request.Browser.Platform+ "<br>");
           Response.Write("music" + Request.Browser.BackgroundSounds + "<br>");
           Response.Write("frames" + Request.Browser.Frames + "<br>");

        }
        protected void Button2_Click(object sender, EventArgs e)
        {
            HttpCookie nc = new HttpCookie("ck");
            nc.Values["name"] = "wuwenjie";
            nc.Values["age"] = "22";
            nc.Values["dt"] = DateTime.Now.ToString();
            Response.Cookies.Add(nc);
            Response.Write("success");

        }
        protected void Button3_Click(object sender, EventArgs e)
        {
            HttpCookie getck = Request.Cookies["ck"];
            Response.Write(getck.Values["name"] + " " + getck.Values["age"] + " " + getck.Values["dt"]);
        }
        protected void Button4_Click(object sender, EventArgs e)
        {
            Response.Redirect("http://www.baidu.com");

        }
        protected void Button5_Click(object sender, EventArgs e)
        {
            Response.Write("<script>alert('nihao')</script>");
        }
        protected void Button6_Click(object sender, EventArgs e)
        {
            string xml = Server.MapPath("~/App_Data/XMLFile.xml").ToString();
            Response.WriteFile(xml);
        }
        protected void Button7_Click(object sender, EventArgs e)
        {    
            Response.Redirect("Default5.aspx?name=" + name.Text + "&age=" + age.Text);
        }
    }

  • 相关阅读:
    列举面向对象中的特殊成员以及应用场景
    python中os和sys模块
    谈谈你对闭包的理解?
    Python面试题(练习一)
    logging模块的作用以及应用场景
    Python的垃圾回收机制
    Python的深浅copy
    rust 支持的CPU架构
    Rust 数据类型
    网站用https访问的问题
  • 原文地址:https://www.cnblogs.com/handboy/p/7141559.html
Copyright © 2011-2022 走看看