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);
        }
    }

  • 相关阅读:
    175. 组合两个表
    101. 对称二叉树
    292. Nim游戏
    319. 灯泡开关
    155. 最小栈
    232. 用栈实现队列
    225. 用队列实现栈
    145. 二叉树的后序遍历
    144. 二叉树的前序遍历
    【leetcode】977. Squares of a Sorted Array
  • 原文地址:https://www.cnblogs.com/handboy/p/7141559.html
Copyright © 2011-2022 走看看