Service1.asmx.cs
上传用户:hbbfjy2008
上传日期:2015-02-05
资源大小:5616k
文件大小:1k
源码类别:

中间件编程

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Diagnostics;
  6. using System.Web;
  7. using System.Web.Services;
  8. namespace iWebOffice.ocx.c.net
  9. {
  10. /// <summary>
  11. /// Service1 的摘要说明。
  12. /// </summary>
  13. public class Service1 : System.Web.Services.WebService
  14. {
  15. public Service1()
  16. {
  17. //CODEGEN:该调用是 ASP.NET Web 服务设计器所必需的
  18. InitializeComponent();
  19. }
  20. #region Component Designer generated code
  21. //Web 服务设计器所必需的
  22. private IContainer components = null;
  23. /// <summary>
  24. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  25. /// 此方法的内容。
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. }
  30. /// <summary>
  31. /// 清理所有正在使用的资源。
  32. /// </summary>
  33. protected override void Dispose( bool disposing )
  34. {
  35. if(disposing && components != null)
  36. {
  37. components.Dispose();
  38. }
  39. base.Dispose(disposing);
  40. }
  41. #endregion
  42. // WEB 服务示例
  43. // HelloWorld() 示例服务返回字符串 Hello World
  44. // 若要生成,请取消注释下列行,然后保存并生成项目
  45. // 若要测试此 Web 服务,请按 F5 键
  46. // [WebMethod]
  47. // public string HelloWorld()
  48. // {
  49. // return "Hello World";
  50. // }
  51. }
  52. }