home *** CD-ROM | disk | FTP | other *** search
/ 66.142.0.142 / 66.142.0.142.tar / 66.142.0.142 / EmailTest.aspx < prev    next >
Text File  |  2011-09-07  |  1KB  |  46 lines

  1. ∩╗┐<%@ Page Language="VB" AutoEventWireup="false" CodeFile="EmailTest.aspx.vb" Inherits="EmailTest" %>
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head runat="server">
  7.     <title>Email Test</title>
  8. </head>
  9. <body>
  10.     <form id="form1" runat="server">
  11.     <div>
  12.     <table width="400px">
  13.         <tr>
  14.             <td colspan="2" align="center">
  15.                 TFC Email Test
  16.             </td>
  17.         </tr>
  18.         <tr>
  19.             <td width="20%">
  20.                 <asp:Label runat="server" text="To:"></asp:Label>
  21.             </td>
  22.             <td>
  23.                 <asp:TextBox runat="server" ID="txtTO" Width="400px"></asp:TextBox>
  24.             </td>
  25.         </tr>
  26.         <tr>
  27.             <td></td>
  28.             <td>
  29.                 <asp:Button runat="server" ID="btnSubmit" Text="Submit" />
  30.             </td>
  31.         </tr>
  32.         <tr>
  33.             <td>
  34.             </td>
  35.         </tr>
  36.         <tr>
  37.             <td>
  38.                 <asp:Label runat="server" ID="lblMessage" Height="100px" Width="500px"></asp:Label>
  39.             </td>
  40.         </tr>
  41.     </table>
  42.     </div>
  43.     </form>
  44. </body>
  45. </html>
  46.