-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathSample.aspx
28 lines (26 loc) · 1.42 KB
/
Sample.aspx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Sample.aspx.cs" Inherits="Sample" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
Email
<asp:TextBox ID="txt_email" runat="server"></asp:TextBox>
<br />
<br />
Location
<asp:TextBox ID="txt_location" runat="server"></asp:TextBox>
<br />
<br />
CreditCardNumber
<asp:TextBox ID="txt_credit" runat="server"></asp:TextBox>
<br />
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Buy" />
<asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:ConnectionString %>" SelectCommand="SELECT * FROM [Order]"></asp:SqlDataSource>
</form>
</body>
</html>