⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 books.asmx

📁 东软内部材料(四)asp等相关的教学案例 
💻 ASMX
字号:
<%@ WebService Language="C#" Class="ReturnBooks" %>

using System.Web.Services;

public class ReturnBooks
{
  [WebMethod()]
  public Books GetBooks()
  {
    Books b = new Books();
    b.Title = "Professional ASP.NET";
    b.Price = 49.95;
    b.Description = "This book covers Microsoft's ASP.NET technology " +
                    "for building Web Applications";
    
    b.Authors = new string[6];
    
    b.Authors[0] = "Alex Homer";
    b.Authors[1] = "David Sussman";
    b.Authors[2] = "Rob Howard";
    b.Authors[3] = "Brian Francis";
    b.Authors[4] = "Rich Anderson";
    b.Authors[5] = "Karli Watson";

    return b;
  }
}

public class Books
{
  public string Title;
  public string Description;
  public double Price;
  public string[] Authors;
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -