home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 40 / IOPROG_40.ISO / SOFT / NETFrameworkSDK.exe / comsdk.cab / samples.exe / Remoting / MyStock / SimpleQuote.aspx < prev    next >
Encoding:
ASP.NET Web Form  |  2000-06-23  |  1.5 KB  |  67 lines

  1. <%@ Page Language="C#" %>
  2. <%@ Assembly Name="StockNet" %>
  3. <%@ Assembly Name="System" %>
  4. <%@ Import Namespace="System.Text" %>
  5. <%@ Import Namespace="System.Collections" %>
  6. <%@ Import Namespace="System.Runtime.Remoting" %>
  7. <%@ Import Namespace="StockNet" %>
  8.  
  9. <html>
  10. <head>
  11.  
  12.     <script runat="server">
  13.      String symbol;
  14.      String lastTradePrice;
  15.  
  16.      void quotes_change(Object Source, EventArgs E)
  17.      {
  18.          StockNet.StockQuote stockQuote = new StockNet.StockQuote();
  19.          symbol = Symbol.Value;
  20.          lastTradePrice = stockQuote.GetLastTradePrice(symbol);
  21.      }
  22.      
  23.     </script>
  24.  
  25. </head>
  26.  
  27.  
  28.  
  29. <body style="font: 10pt verdana">
  30.  
  31. <h3>SimpleQuote - GetLastTradePrice </h3>
  32.  
  33. <form runat="server">
  34.     <font face="Verdana">
  35.  
  36.     <b>Please Enter a Stock symbol: </b>
  37.  
  38.     <INPUT id="Symbol" VALUE="" TYPE="TEXT" runat="server" OnServerChange = "quotes_change">
  39.  
  40.     <p>
  41.  
  42.     </font>
  43.  
  44. </form>
  45.  
  46.  
  47.  
  48.  
  49. <table cellpadding="1" cellspacing="1" width="100%" style="COLOR:
  50. black;FONT: 8pt verdana, arial" border="0" >
  51.  
  52.     <tr bgcolor="ffffff">
  53.         <td style="padding-left:5" width="*" bgcolor="#b6cbeb"><b>Symbol</b></td>
  54.  
  55.         <td style="padding-left:5;padding-right:15" width="*" bgcolor="#b6cbeb"><b>LastTradePrice</b></td>
  56.  
  57.     </tr>
  58.     <tr bgcolor="#eeeeee">
  59.         <td style="padding-left:5" width="*" bgcolor="#b6cbeb"><b><%=symbol%></b></td>
  60.  
  61.         <td style="padding-left:5;padding-right:15" width="*" bgcolor="#b6cbeb"><b><%=lastTradePrice%></b></td>
  62.     </tr>
  63. </table>
  64.  
  65. </body>
  66. </html>
  67.