Advertisement
Guest User

Untitled

a guest
May 6th, 2019
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ASP 1.93 KB | None | 0 0
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Order.aspx.cs" Inherits="Moonshot_page_1.Order" %>
  2.  
  3. <!DOCTYPE html>
  4.  
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head runat="server">
  7.     <title></title>
  8.     <style type="text/css">
  9.         .auto-style1 {
  10.             width: 230px;
  11.         }
  12.     </style>
  13. </head>
  14. <body>
  15.     <form id="form1" runat="server">
  16.         <div>
  17.             <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
  18.             <asp:Button ID="btnSearch" runat="server" Height="22px" Text="Go" />
  19.             <br />
  20.             <table style="width:100%;">
  21.                 <tr>
  22.                     <td class="auto-style1">
  23.                         <asp:ImageButton ID="ibtnBlackCoffee" runat="server" ImageUrl="~/Coffee.png" />
  24.                         <br />
  25.                         Black Coffee</td>
  26.                     <td>
  27.                         <asp:Button ID="btnAdd" runat="server" BackColor="#3366FF" Font-Bold="True" ForeColor="#6699FF" Height="90px" Text="Add to Order" Width="90px" />
  28.                     </td>
  29.                     <td>&nbsp;</td>
  30.                 </tr>
  31.                 <tr>
  32.                     <td class="auto-style1">
  33.                         <asp:ImageButton ID="ibtnDecafCoffee" runat="server" ImageUrl="~/Decaf.png" />
  34.                         <br />
  35.                         Decaf Coffee</td>
  36.                     <td>
  37.                         <asp:Button ID="Button5" runat="server" BackColor="#00CC00" Font-Bold="True" Height="90px" Text="Finish" Width="90px" />
  38.                     </td>
  39.                     <td>&nbsp;</td>
  40.                 </tr>
  41.                 <tr>
  42.                     <td class="auto-style1">&nbsp;</td>
  43.                     <td>&nbsp;</td>
  44.                     <td>&nbsp;</td>
  45.                 </tr>
  46.             </table>
  47.         </div>
  48.         <asp:SqlDataSource ID="SqlDataSource1" runat="server"></asp:SqlDataSource>
  49.     </form>
  50. </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement