.aspx.cs页面代码:Namespce Exercise{Public partical class _de">

前台后台传送和接收值的方法

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

在web窗体中的处理方法:

.aspx

页面代码:

<%@page language=”C#” AutoEventWireup=”true” CodeBehind=”_default.aspx.cs” Inherits=”Exercise._default”%>

"/TR/xhtml1/DTD/xhtml1-transitional.dtd">

.aspx.cs

页面代码:

Namespce Exercise

{

Public partical class _default:System.Web.UI.Page

{

Public string name;

Public string id;

Public string sex;

Protected void Page_Load(Object Sender,EventArgs e)

{

}

}

}

1、用post()方法传递过来的值:

String name=Request.Form[“name”].ToString()==null?Request.Form[“name”].ToString()+””: Request.Form[“name”].ToString();

2、用GET()方法传递过来的值:

String name= Request.QueryString[“name”] ==null? Request. QueryString [“name”] +””: Request. QueryString [“name”];

3、向前台传值:

在script 脚本中用

<%=name%>来实现;

对于.ashx一般程序文件的后台接收值:

则这样写

public void ProcessRequest(HttpContext context)

{

string name=context.Request.Form["name"].ToString() ==null?

context.Request.Form["name"].ToString() +"" : context.Request.Form["name"].ToString();

string sex=context.Request.Form["sex"].ToString() ==null?

context.Request.Form["sex"].ToString() +"" : context.Request.Form["sex"].ToString(); ;

string address=context.Request.Form["address"].ToString() ==null? context.Request.Form["address"].ToString() +"" :

context.Request.Form["address"].ToString(); ;

context.Response.ContentType="text/plain";

context.Response.Write(Add(name,sex,address));

}

主要用到的方法为:context.Request.Form[“”].ToString();

引用必要的名称空间为:System.Web、System.Web.UI、System.Web.UI.WebControls

4、ajax、post、load方法的简单应用:

jQuery的应用方法:

$.ajax({

Type:”POST”,

url:“Exercise._default.aspx”,

data:{name:$(“#name”).val()},

content-type:”application/json;charset:utf-8”,

datatype:”json”,

success:funcation(data){

$(“#div”).html(data.d);

}

} )

$.post(

“Exercise._default.aspx”,

{name:$(“#name”).val()},

funcation(data){

$(“#div”).html(data.d);

}

)

$(“#div”).load(“Exercise._default.aspx”);

相关文档
最新文档