zoukankan      html  css  js  c++  java
  • QueryString 页面传值方法

    Request Response 是两个非常重要而且有用的对象。Request 是请求对象,它存储客户端的信息。Response 是服务器对象,它包售服务器的响应。

    该示例包括两个页面:SendQueryString.aspx QueryString.aspx 。将在SendQueryString.aspx中传递值给QueryString.aspx,然后在QueryString 中读取数据。这是一种页面传值的方法。

    1SendQueryString.aspx Page_Load 中添加如下代码:

    public partial class SendQueryString : System.Web.UI.Page

    {

        protected void Page_Load(object sender, EventArgs e)

        {

            //传递国家,省份,市信息给QueryString.aspx

            this.Response.Redirect("QueryString.aspx?Country=\"China\"&&province=\"HuNan\"&&City=\"ChangSha\"");

        }

    }

    2QueryString.aspx中读取QueryString信息:

    using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Web;

    using System.Web.UI;

    using System.Web.UI.WebControls;

     

    public partial class QueryString : System.Web.UI.Page

    {

        protected void Page_Load(object sender, EventArgs e)

        {

            //读取QueryString.aspx信息

            string country = this.Request.QueryString["Country"].ToString().Trim();

            string provinc = this.Request.QueryString["Province"].ToString().Trim();

            string city = this.Request.QueryString["City"].ToString().Trim();

            //显示QueryString信息

            this.Response.Write("传递过来的信息:国家="+country+"省份="+provinc+"城市="+city);

        }

    }

     

    3 结果为:传递过来的信息:国家="China"省份="HuNan"城市="ChangSha"

  • 相关阅读:
    非阻塞式线程安全列表-ConcurrentLinkedDeque
    计数器
    Linux 查看服务器内存使用情况
    Oracle to_date, to_timestamp
    Hibernate session.flush() 使用
    阿里规约认证(题库附答案)
    多态性
    Java数据类型
    String类特点分析
    数组的定义
  • 原文地址:https://www.cnblogs.com/fanghui/p/2774278.html
Copyright © 2011-2022 走看看