Service1.asmx.cs
上传用户:yiyuerguo
上传日期:2014-09-27
资源大小:3781k
文件大小: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 coin
  9. {
  10. /// <summary>
  11. /// Service1 的摘要说明。
  12. /// </summary>
  13. [WebService (Namespace = "http://localhost/coin/WebServices/",
  14.  Description = "Displays a Hello World Greeting")]
  15. public class Service1 : System.Web.Services.WebService
  16. {
  17. public Service1()
  18. {
  19. //CODEGEN: 该调用是 ASP.NET Web 服务设计器所必需的
  20. InitializeComponent();
  21. }
  22. #region 组件设计器生成的代码
  23. //Web 服务设计器所必需的
  24. private IContainer components = null;
  25. /// <summary>
  26. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  27. /// 此方法的内容。
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. }
  32. /// <summary>
  33. /// 清理所有正在使用的资源。
  34. /// </summary>
  35. protected override void Dispose( bool disposing )
  36. {
  37. if(disposing && components != null)
  38. {
  39. components.Dispose();
  40. }
  41. base.Dispose(disposing);
  42. }
  43. #endregion
  44. // WEB 服务示例
  45. // HelloWorld() 示例服务返回字符串 Hello World
  46. // 若要生成,请取消注释下列行,然后保存并生成项目
  47. // 若要测试此 Web 服务,请按 F5 键
  48. [WebMethod]
  49. public string HelloWorld()
  50. {
  51. return "Hello World";
  52. }
  53.         [WebMethod]
  54. public double change(double ddgree)
  55. {
  56. return (ddgree * 8.2787);
  57. }
  58. }
  59. }