股票报价的WebService(转天极网)之四

发表于:2007-06-30来源:作者:点击数: 标签:
创建 Web应用程序用户br br 下面创建一个Web应用程序StockConsumer.aspx,它作为这个StockQuote(股票报价) Web服务的第一个用户。 br br <%@ Page language=quot;C#quot; %>br <%@ Import Namespace=quot;System.Xmlquot; %>br <%@ Import Namespace=q
创建 Web应用程序用户<br>
<br>
下面创建一个Web应用程序StockConsumer.aspx,它作为这个StockQuote(股票报价) Web服务的第一个用户。 <br>
<br>
  <%@ Page language=&quot;C#&quot; %><br>
  <%@ Import Namespace=&quot;System.Xml&quot; %><br>
  <%@ Import Namespace=&quot;Quotes&quot; %><br>
<br>
  以上引入必要的名称空间。要记住也要引入 Quotes名称空间,它是代理库的名称空间。<br>
<br>
  <html><br>
  <head><br>
  <script runat=server><br>
   // Wire up the onClick event for a button <br>
   protected void button1_Click(object sender, EventArgs e)<br>
   {<br>
    file://Create a object of the class DailyStock (the proxy class)<br>
    DailyStock ds = new DailyStock();<br>
<br>
    // Call the GetQuote method of the proxy class DailyStock and <br>
    // pass the symbol string from the textbox <br>
    string res = ds.GetQuote(symbol.Text);<br>
<br>
    // The returned string has values which are separated <br>
    // by commas.<br>
    // Hence we split the returned string into parts <br>
    char[] splitter = {@#,@#} ;<br>
    string[] temp = res.Split(splitter);<br>
<br>
    // Check if the string array returned has more than one <br>
    // elements since if there are less than one elements <br>
    // then an exception must have been returned <br>
    if(temp.Length &gt;1)<br>
     {<br>
      // The WebService returns a lot of information about the<br>
      // stock. We only show the relevant portions<br>
      // Set the label to current Index<br>
      curindex.Text = &quot;Current Index :&quot;+temp[1]; <br>
<br>
      // Set the label to current Date Time<br>
      curdate.Text =&quot;Last Update on&quot;+temp[2]+&quot; at &quot;+temp[3]; <br>
     }<br>
    else<br>
     {<br>
      error.Text = &quot;Error :&quot;+res ; file://set the error label<br>
     }<br>
    }<br>
   </script><br>
<br>
以上ASP.NET页面代码中,首先对Web 服务DailyStock进行例示。由于已经生成了代理库,因此Web服务的调用方法与其它任何库的调用方法都相同。调用DailyStock 类的GetQuote()方法后,将返回一个字符串,其中包含了以逗号分隔的列表符号的完整信息。<br>
<br>
  我们将限制显示给客户的信息为只显示当前指数和所报告指数的日期/时间。为了将字符串分成若干不同的部分,这里使用了字符串类的Split方法,在出现逗号的地方将字符串分割成部分。并且,将分割开的字符串组成数组之后,再使用相关的数值为Web页面设置不同的标签。 <br>
<br>
  代码的其余部分<br>
<br>
  <body><br>
  <center><br>
  <h2>.NET101 Stock Quote Consumer </h2><br>
<br>
  <form runat=server ><br>
   <table border=1 celspacing=1><br>
    <tr><th>Please enter the symbol below</th></tr><br>
    <tr><td><br>
    <asp:textbox id=symbol runat=server /> <br>
    <asp:button id=button1 text=&quot;Get Quote&quot; onClick=&quot;button1_Click&quot; runat=server /><br>
    </td></tr><br>
    <tr><td><asp:label id=curindex runat=server /></td></tr><br>
    <tr><td><asp:label id=curdate runat=server /></td></tr><br>
    <tr><td><asp:label id=error runat=server /></td></tr><br>
   </table><br>
  </form><br>
<br>
  </center><br>
  </body><br>
  </html><br>

原文转自:http://www.ltesting.net