博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Flex读写数据
阅读量:4961 次
发布时间:2019-06-12

本文共 3410 字,大约阅读时间需要 11 分钟。

我自己部署的网站地址,c#代码如下:

using System.Web;using System.Web.Services;using System.Data.SqlClient;namespace FlexReadSql{    ///     /// $codebehindclassname$ 的摘要说明    ///     [WebService(Namespace = "http://tempuri.org/")]    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]    public class ResponseFlex : IHttpHandler    {        public void ProcessRequest(HttpContext context)        {            context.Response.ContentType = "text/plain";            if (context.Request["names"] != null)            {                using (SqlConnection conn = new SqlConnection())                {                    conn.ConnectionString = "Data Source=ZGY-WUHAN;Initial Catalog=assql-test;Persist Security Info=True;User ID=sa;Password=********";                    conn.Open();                    SqlCommand com = new SqlCommand();                    com.Connection = conn;                    com.CommandText = "select * from use_db where names=@name";                    SqlParameter para = new SqlParameter("@name", context.Request["names"]);                    com.Parameters.Add(para);                    using (SqlDataReader dr = com.ExecuteReader())                    {                        if (dr.Read())                        {                            //context.Response.ContentType = "text/plain";                            context.Response.Write(dr["pass"].ToString());                            context.Response.End();                        }                        else context.Response.Write("error!!!");                    }                }            }            else context.Response.Write("没有参数!");        }        public bool IsReusable        {            get            {                return false;            }        }    }}

转载于:https://www.cnblogs.com/iammrwu/archive/2012/05/09/2491386.html

你可能感兴趣的文章
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>
Boosting(提升方法)之AdaBoost
查看>>
链接元素<a>
查看>>
Binding object to winForm controller through VS2010 Designer(通过VS2010设计器将对象绑定到winForm控件上)...
查看>>
Spring Boot实战笔记(二)-- Spring常用配置(Scope、Spring EL和资源调用)
查看>>
活现被翻转生命
查看>>
POJ 1228
查看>>
SwaggerUI+SpringMVC——构建RestFul API的可视化界面
查看>>
springmvc怎么在启动时自己执行一个线程
查看>>
流操作的规律
查看>>
Python基础学习15--异常的分类与处理
查看>>
javascript运算符的优先级
查看>>
React + Redux 入门(一):抛开 React 学 Redux
查看>>
13位时间戳和时间格式化转换,工具类
查看>>
vue router-link子级返回父级页面
查看>>
C# 通知机制 IObserver<T> 和 IObservable<T>
查看>>