-
Notifications
You must be signed in to change notification settings - Fork 0
/
AddQuery.aspx
65 lines (60 loc) · 2.08 KB
/
AddQuery.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="AddQuery.aspx.cs" Inherits="AddQuery" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Add Query</title>
<style>
body
{
background-color: #284E59;
}
input
{
background-color: #F8F8F8;
border: 1px solid #300;
margin-right: 15px;
}
input[type=text]
{
background-color: #F8F8F8;
border: 1px solid #330000;
line-height: 1.8;
margin-right: 15px;
padding: 5px;
height: 24px;
width: 300px;
padding: 5px 10px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.tabloDetayCont
{
background-color: #F8F8F8;
border: 1px solid #3300dd;
padding: 5px;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
</style>
<link href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/themes/smoothness/jquery-ui.css"
rel="stylesheet" type="text/css" />
<link href="//steamdev.com/snippet/css/jquery.snippet.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:TextBox ID="txtDsc" runat="server" Height="16px" Width="401px" ></asp:TextBox>
<br />
<br />
<asp:TextBox ID="txtQuery" runat="server" TextMode="MultiLine"
Height="84px" Width="401px"></asp:TextBox>
<br />
<br />
<asp:Button ID="Button1" runat="server" Text="Button" onclick="Button1_Click" />
</div><asp:Label ID="lblQuery" runat="server" Text="Label"></asp:Label>
</form>
</body>
</html>