zoukankan      html  css  js  c++  java
  • Query 传值的方式

     1
    $.get("/admin/ashx/wallet.ashx", { "username": username, "t": Math.random() }, function (obj) {},"json")
    2
     $.post("/admin/ashx/wallet.ashx", data + "&type=m", function (obj) {},"json")

    3 传到本页面的

     $.post("/Login/login2.aspx", { "username": txtuser, "userpwd":txtpwd ,"code":code},
            function () {
             
            },"json")

    在后台

      protected void Page_Load(object sender, EventArgs e)
            {
                if (Request.Headers["X-Requested-With"] != null
     && Request.Headers["X-Requested-With"].ToLower() == "XMLHttpRequest".ToLower())
                {
                    if (!string.IsNullOrEmpty(Request.Params["username"])
                        && !string.IsNullOrEmpty(Request.Params["userpwd"])
                        && !string.IsNullOrEmpty(Request.Params["code"]))
                    {
                        Login();
                    }
                }

            }

            void Login()
            {
                Response.Write("1");
               
            }

  • 相关阅读:
    MySQL 子查询
    MySQL 多表查询 内连接 和 外连接
    MySQL 分页
    MySQL 常用函数 流程控制
    Envoy基于文件系统的EDS动态配置
    Envoy学习笔记
    dapr入门学习
    浅谈cache
    List的初始化方式
    屌丝公司:设置服务器的时区、时间及时间同步
  • 原文地址:https://www.cnblogs.com/cdaq/p/3557515.html
Copyright © 2011-2022 走看看