• 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"

  • 相关阅读:
    双飞翼布局和圣杯布局的对比
    阿里云centos+java环境搭建
    Android零散知识点积累
    [转]linux shell 流程控制(条件if,循环【for,while】,选择【case】语句实例
    [转]linux shell 获取当前正在执行脚本的绝对路径
    [转+整理]linux shell 将字符串分割成数组
    [转]linux shell 数组建立及使用技巧
    linux shell 入门
    jquery 字符串转为json
    JQuery插件开发入门
  • 原文地址:https://www.cnblogs.com/fanghui/p/2774278.html
Copyright © 2020-2023  润新知