• 页面传值出现乱码问题 window.showModalDialog()


    UI界面 encodeURI();

    var Setsup_no = $("#sup_no").val();

    wname = window.showModalDialog('../YZM_List/YZMPurchase_SList.aspx?Setsup_no=' +  encodeURI(Setsup_no) , '', 'dialogWidth:1024px;DialogHeight=678px;status:no;help:no;resizable:no;');

    接收页面后台Server.UrlDecode();

    sup_no.Value = Server.UrlDecode(HttpContext.Current.Request["Setsup_no"].ToString());

    sup_no.Value = Server.UrlDecode(Request.QueryString["Setsup_no"].ToString());

    主要函数

    encodeURI(string a);

    Server.UrlDecode(string b);

    方法一:

    UI界面 encodeURI();主界面
    
    var Setsup_no = $("#sup_no").val();
    
    wname = window.showModalDialog('../YZM_List/YZMPurchase_SList.aspx?Setsup_no=' +  encodeURI(Setsup_no) , '', 'dialogWidth:1024px;DialogHeight=678px;status:no;help:no;resizable:no;');
    
     
    
    接收页面后台Server.UrlDecode();从界面
    
    sup_no.Value = Server.UrlDecode(HttpContext.Current.Request["Setsup_no"].ToString());
    
    sup_no.Value = Server.UrlDecode(Request.QueryString["Setsup_no"].ToString());
    
     
    
    主要函数
    
    encodeURI(string a);
    
    Server.UrlDecode(string b);
    

      

    方法二:

    //页面传值;主界面
    
    wname = window.showModalDialog('../YZM_List/YZMPro_Analysis_SList.aspx?cust_no_id=' + escape(cust_no_id) , '', 'dialogWidth:1024px;DialogHeight=678px;status:no;help:no;resizable:no;');
    
    
    //后台获取;从界面
    
    Request.QueryString["cust_no_id"].ToString();


    主要函数
    escape();

      

  • 相关阅读:
    Python os.getcwd()方法
    Python os.walk()方法
    PyTorch 模型构造
    Python map()函数
    字符串转数字测试--知识备忘
    如何判断一个变量是数组Array类型--实例--加个人见解
    js面试题
    ios学习笔记
    读取图片文件--实例
    名言记录
  • 原文地址:https://www.cnblogs.com/lengv10/p/3671336.html
Copyright © 2020-2023  润新知