控件中国网现已改版,您看到的是老版本网站的镜像,系统正在为您跳转到新网站首页,请稍候.......
中国最专业的商业控件资讯网产品咨询电话:023-67870900 023-67871946
产品咨询EMAIL:SALES@COMPONENTCN.COM

HTML页面做中间页跳转传递参数

作者:未知 出处:cnblog 2012年11月29日 阅读:

 在web项目开发中,我们经常会从一个页面 传递大量的参数到另外一个页面,当参数很多的时候我们不能通过url直接传递过去,因为这样传递的参数有限,那么有木有其他的方法呢,当然有。我们可以用一个html页面作为中间页,把传递到HTML页面的数据通过post 请求 post到另外一个ASPX页面。实现在ASP.NET中实现跨页面大批量数据传递。废话少说,直接上代码:

父页面:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="index.aspx.cs" Inherits="WebAppTest.index" %>
 
 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head runat="server">
     <title>父页面</title>
     <script language="javascript" type="text/javascript">
         function ShowDividePage() {
                 var params = new Object();
                 params.Keys = "1234567890";
                 params.Code = "qwertyuioplkjhgfdsazxcvbnm";
                 var sFeature = "dialogWidth:500px; dialogHeight:250px;center:yes;help:no;resizable:no;scroll:auto;status:no";
                 var url = "Pop.htm?sysid=" + Math.random();
                 window.showModalDialog(url, params, sFeature);
         }
     </script>
 </head>
 <body>
     <form id="form1" runat="server">
     <div>
     <input type="button" id="btn_Show" value="弹出" onclick="ShowDividePage();" />
     </div>
     </form>
 </body>
 </html>
HTML中间页:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>HTML中间页</title>
    <script language="javascript" src="Scripts/jquery-1.4.1.min.js"></script>
    <script type="text/javascript" language="javascript">
        $(document).ready(function () {
            window.name = "submitForm";
            var keys = window.dialogArguments.Keys;
            var code = window.dialogArguments.Code;
            $("#hdKeys").val(keys);
            $("#hdCode").val(code);
            $("#submitForm").submit();
        });
    </script>
</head>
<body>
<form id="submitForm" action="Show.aspx" method="post" target="submitForm">
    <input type="hidden" id="hdKeys" name="hdKeys" />
    <input type="hidden" id="hdCode" name="hdCode" />
    </form>
</body>
</html>
接收参数 子页面:

直接在page_Load事件中接收:

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

namespace WebAppTest
{
    public partial class Show : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            string keys = Request.Form["hdKeys"];
            string Code = Request.Form["hdCode"];
            Response.Write(keys);
            Response.Write(Code);
        }
    }
}
 

热推产品

  • ActiveReport... 强大的.NET报表设计、浏览、打印、转换控件,可以同时用于WindowsForms谀坔攀戀Forms平台下......
  • AnyChart AnyChart使你可以创建出绚丽的交互式的Flash和HTML5的图表和仪表控件。可以用于仪表盘的创......
首页 | 新闻中心 | 产品中心 | 技术文档 | 友情连接 | 关于磐岩 | 技术支持中心 | 联系我们 | 帮助中心 Copyright-2006 ComponentCN.com all rights reserved.重庆磐岩科技有限公司(控件中国网) 版权所有 电话:023 - 67870900 传真:023 - 67870270 产品咨询:sales@componentcn.com 渝ICP备12000264号 法律顾问:元炳律师事务所 重庆市江北区塔坪36号维丰创意绿苑A座28-5 邮编:400020
在线客服
在线客服系统
在线客服
在线客服系统