基本信息
源码名称:C#httppost服务器
源码大小:1.91KB
文件格式:.cs
开发语言:C#
更新时间:2013-08-23
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 2 元 
   源码介绍
[HttpPost]
        public string rtpost(string name, string param)
        {
            return rtget(name, param);
        }

        [HttpGet]
        public string rtget(string name,string param)
        {
            if (name.Equals("addAudio"))
            { 
                
            }
            string json="";
            string sql = "select * from tabtemplate where methodName='" name "'";
            DataSet ds = DA.ExecuteDataset("Default", sql);
            if (DA.Check(ds))
            {
                string procName = Convert.ToString(ds.Tables[0].Rows[0][2]);
                if (param != null)
                {
                    if (param.Contains("|"))
                    {
                        string[] a = param.Split("|".ToCharArray());
                        for (int i = 0; i < a.Length; i )
                        {
                            procName = procName.Replace("?" (i 1), a[i]);
                        }
                    }
                    else
                    {
                        procName = procName.Replace("?" 1, param);
                    }
                }
                DataSet ds1 = DA.ExecuteDataset("Default", procName);
                int lie = ds1.Tables[0].Columns.Count;
                if (lie<=1)
                {
                    json = ds1.Tables[0].Rows[0][0].ToString();
                }
                else
                {
                    json = BLL.Jsons.ToJson(ds1);
                }
            }
            return json;
        }