学校数据

Posted mamingyuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了学校数据相关的知识,希望对你有一定的参考价值。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;

namespace StudentWebserice
{
    using MODEL;
    using BLL;
    using System.Data.SqlClient;
    using Newtonsoft.Json;
    using System.Data;
    /// <summary>
    /// ClassWebService 的摘要说明
    /// </summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [System.ComponentModel.ToolboxItem(false)]
    // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消注释以下行。 
     [System.Web.Script.Services.ScriptService]
    public class ClassWebService : System.Web.Services.WebService
    {

        [WebMethod]
        public string HelloWorld()
        {
            return "Hello World";
        }
        [WebMethod]
        public void GetClasses(int SchoolCode)
        {
           ClassBll bll = new ClassBll();
            Context.Response.ContentType = "Application/json;charset=utf-8";
            List<Class> list = bll.GetClasses(SchoolCode);
            var json = JsonConvert.SerializeObject(list);
            Context.Response.Write(json);
        }
    }
}



using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;

namespace StudentWebserice
{
    using MODEL;
    using BLL;
    using System.Data.SqlClient;
    using Newtonsoft.Json;
    using System.Data;
  
    /// <summary>
    /// StudentWebserice 的摘要说明
    /// </summary>
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    [System.ComponentModel.ToolboxItem(false)]
    // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消注释以下行。 
    [System.Web.Script.Services.ScriptService]
    public class StudentWebserice : System.Web.Services.WebService
    {

        [WebMethod]
        public string HelloWorld()
        {
            return "Hello World";
        }
        [WebMethod]
        public void GetSchools()
        {
            SchoolBll bll = new SchoolBll();

            Context.Response.ContentType = "Application/json;charset=utf-8";
            List<School> list = bll.GetSchools();
            var json = JsonConvert.SerializeObject(list);
            Context.Response.Write(json);
        }
    }
}

 

 

 





以上是关于学校数据的主要内容,如果未能解决你的问题,请参考以下文章

如何在php脚本中接受PostgreSQL数据库数量?

超级有用的9个PHP代码片段

python 用于数据探索的Python代码片段(例如,在数据科学项目中)

将代码片段插入数据库并在 textarea 中以相同方式显示

如何从 Firebase 获取数据到 Recyclerview 中的片段?

实用代码片段将json数据绑定到html元素 (转)