|
|
|
使用JScript.NET创建asp.net页面(七)
作者:佚名 来源:一亩三分地 点击: 日期:2007-03-30 |
|
例子2 <%@ WebService Language="JScript" class="Weather"%> import System import System.Web.Services class Weather { WebMethodAttribute function getConditions(strCity : String) : String { var now = new Date(); switch (strCity.toUpperCase()) { case "LONDON": if (now.getMonth() <= 7||now.getMonth() >=9) { return "overcast" } if { return "partly overcast" } break; case "SEATTLE": if (now.getMonth() == 7 && now.getDay()==4) { return "torrential rain" } else { return "rain" } break; case "LA": return "smoggy" break; case "PHOENIX": return "damn hot" break; default: return "partly cloudy with a chance of showers" } }<

|
|
|
|
【文章评论】
【收藏本文】
【推荐好友】
【打印本文】
【论坛讨论】 |
相关文章: |
|
|
文章评论:(条) |
|
|
|
|
责任编辑:一分 声明:刊登此文章是为了传递更多信息,文章内容仅供参考,转载请注明出处。 |
|