码迷,mamicode.com
首页 > 其他好文 > 详细

QueryString

时间:2017-08-07 20:35:52      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:ted   res   click   nbsp   response   sys   aaa   UI   string   

QueryString - 地址栏显示传值(get)

Request - 获取请求对象

Response - 响应对象

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class _Default : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        Button1.Click += Button1_Click;
    }

    private void Button1_Click(object sender, EventArgs e)
    {
        //点击按钮
        string s = TextBox1.Text;//接受用户输入的内容
        Response.Redirect("Default2.aspx?aaa="+ s  );// 跳转到Default2.aspx页面并将s传给Default2.aspx
    }
}

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

public partial class Default2 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
       Label1.Text= Request["aaa"];//用label1接受下传过来的值
    }
}

 

QueryString

标签:ted   res   click   nbsp   response   sys   aaa   UI   string   

原文地址:http://www.cnblogs.com/skyhorseyk/p/7299854.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!