Service1.asmx.cs
上传用户:lxycoco
上传日期:2022-07-21
资源大小:38457k
文件大小:1k
源码类别:

C#编程

开发平台:

Others

  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 PCSWebSrv1
  9. {
  10. /// <summary>
  11. /// Summary description for Service1.
  12. /// </summary>
  13. public class Service1 : System.Web.Services.WebService
  14. {
  15. public Service1()
  16. {
  17. //CODEGEN: This call is required by the ASP.NET Web Services Designer
  18. InitializeComponent();
  19. }
  20. #region Component Designer generated code
  21. //Required by the Web Services Designer 
  22. private IContainer components = null;
  23. /// <summary>
  24. /// Required method for Designer support - do not modify
  25. /// the contents of this method with the code editor.
  26. /// </summary>
  27. private void InitializeComponent()
  28. {
  29. }
  30. /// <summary>
  31. /// Clean up any resources being used.
  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 SERVICE EXAMPLE
  43. // The HelloWorld() example service returns the string Hello World
  44. // To build, uncomment the following lines then save and build the project
  45. // To test this web service, press F5
  46. // [WebMethod]
  47. // public string HelloWorld()
  48. // {
  49. // return "Hello World";
  50. // }
  51.       [WebMethod]
  52.       public String CanWeFixIt()
  53.       {
  54.          return "Yes we can!";
  55.       }
  56. }
  57. }