网站导航免费论文 原创论文 论文搜索 原创论文 网学软件 学术大家 资料中心 会员中心 问题解答 原创论文 大学论文导航 设计下载 最新论文 下载排行 原创论文 论文源代码
返回网学首页
网学联系
最新论文 推荐专题 热门论文 素材专题
当前位置: 网学 > 编程文档 > ASP.net > 正文

webservice behavior实现的三级联动下拉列表框

来源:http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 14/02/27

网学网为广大网友收集整理了,webservice behavior实现的三级联动下拉列表框,希望对大家有所帮助!

我做了一个三级联动的下拉列表框,后台用webservice,前台用webservice behavior与后台通讯。请高手们多提改进意见。

server端:(service1.asmx.cs)
using System;
using System.Text;
using System.Configuration;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Diagnostics;
using System.Web;
using System.Web.Services;

namespace WebService1
{
    /// <summary>
    /// Summary description for Service1.
    /// </summary>
    public class Service1 : System.Web.Services.WebService
    {
        SqlConnection con;
        

        public Service1()
        {
            //CODEGEN: This call is required by the ASP.NET Web Services Designer
            InitializeComponent();
        }

        #region Component Designer generated code
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            string dsn = ConfigurationSettings.AppSettings["yitong"];

            con=new SqlConnection(dsn);
        }
        #endregion

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        protected override void Dispose( bool disposing )
        {
        }


        [WebMethod]
        public string fenlei()
        {
            string str="select distinct substring(code,1,3) as fenlei from jinan ";
            SqlCommand cmd=new SqlCommand(str,con);            

            cmd.Connection.Open();
            SqlDataReader dr=cmd.ExecuteReader();
            

            string s="请选择:";
            while(dr.Read())
            {
                s += ","+dr["fenlei"].ToString();
            }
            return s;
        }

        [WebMethod]
        public string leixing(string q)
        {
            
            string str="select distinct type from jinan where code like ''"+q+"%''";
            SqlCommand cmd=new SqlCommand(str,con);            

            cmd.Connection.Open();
            SqlDataReader dr=cmd.ExecuteReader();
            

            string s="请选择:";
            while(dr.Read())
            {
                s += ","+dr["type"].ToString();
            }
            return s;
        }


        [WebMethod]
        public string haoduan(string q)
        {
            string str="select distinct substring(code,4,4) as haoduan from jinan where type=''"+q+"''";
            SqlCommand cmd=new SqlCommand(str,con);            

            cmd.Connection.Open();
            SqlDataReader dr=cmd.ExecuteReader();
            

            string s="请选择:";
            while(dr.Read())
            {
                s += ","+dr["type"].ToString();
            }
            return s;
        }


client端(htmlpage1.htm)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
    <HEAD>
        <META NAME="GENERATOR" Content="Microsoft Visual Studio 7.0">
        <TITLE></TITLE>
        <script id="clientEventHandlersJS" language="javascript">
<!--
var icallid;
var icallid1;
var icallid2;

function window_onload() {
service.useService("/service1.asmx?WSDL","myselect");

icallid=service.myselect.callService(fenlei,"fenlei");

}

function fenlei(result)
{
var m=result.value;
var a=m.split(",")

for(var i=0;i<a.length;i++)
{
window.s1.options[i]=new Option(a[i],a[i]);
}
}

function s1_onchange() {
var x=s1.value;
icallid1=service.myselect.callService(leixing,"leixing",x);
}

function s2_onchange() {
var x=s2.value;
icallid2=service.myselect.callService(haoduan,"haoduan",x);
}

function leixing(result){
var m=result.value;
var a=m.split(",")

window.s2.length=0;

for(var i=0;i<a.length;i++)
{
window.s2.options[i]=new Option(a[i],a[i]);
}
}

function haoduan(result){
var m=result.value;
var a=m.split(",")

window.s3.length=0;

for(var i=0;i<a.length;i++)
{
window.s3.options[i]=new Option(a[i],a[i]);
}

}

//-->
        </script>
    </HEAD>
    <BODY onload="return window_onload()">
        <div id="service" style="behavior:url(webservice.htc)">
        </div>
        <select id="s1" onchange="return s1_onchange()"> </select><select id="s2" onchange="return s2_onchange()"></select>
        <select id="s3"></select>
</HTML>


网学推荐

免费论文

原创论文

设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved 湘ICP备09003080号