-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStock.aspx
69 lines (45 loc) · 3.21 KB
/
Stock.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
66
67
68
<%@ Page Title="" Language="VB" MasterPageFile="~/MasterPage.master" AutoEventWireup="false" CodeFile="Stock.aspx.vb" Inherits="Stock" %>
<%@ Register
Assembly="AjaxControlToolkit"
Namespace="AjaxControlToolkit"
TagPrefix="ajaxToolkit" %>
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="ajax" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<ajax:ToolkitScriptManager ID="ScriptManager1" runat="server"/>
<%--<asp:ScriptManager ID="ScriptManager2" runat="server"></asp:ScriptManager>--%>
<form role="form" >
<br />
<asp:Label ID="Label4" runat="server" Text="Enter Search Keyword" Font-Bold="True" Font-Size="Small"></asp:Label>
<asp:UpdatePanel ID="UpdatePanel1" runat="server">
<ContentTemplate>
<ajax:AutoCompleteExtender ID="AutoCompleteExtender1" runat="server" TargetControlID="txtCountry"
MinimumPrefixLength="1" EnableCaching="true" CompletionSetCount="1" CompletionInterval="1000" ServicePath="AutoComplete.asmx" ServiceMethod="GetCompletionList" >
</ajax:AutoCompleteExtender>
<asp:TextBox ID="txtCountry" class="form-control" runat="server" AutoPostBack="True"></asp:TextBox>
<div>
<asp:UpdateProgress ID="UpdateProgress1" runat="server" DynamicLayout="true" AssociatedUpdatePanelID="UpdatePanel1" >
<ProgressTemplate>
<div style="background-color: white; filter:alpha(opacity=60); opacity:0.60; width: 100%; top: 20px; left: 0px; position: fixed; height: 100%;">
</div>
<img src="img/poi_blue.gif" alt="Loading" />
</ProgressTemplate>
</asp:UpdateProgress>
<br />
<asp:GridView ID="GridView2" runat="server" CellPadding="4" CssClass="table table-striped table-bordered table-hover dataTable no-footer" ForeColor="#333333" GridLines="None">
<AlternatingRowStyle BackColor="White" />
<EditRowStyle BackColor="#2461BF" />
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<RowStyle BackColor="#EFF3FB" />
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
<SortedAscendingCellStyle BackColor="#F5F7FB" />
<SortedAscendingHeaderStyle BackColor="#6D95E1" />
<SortedDescendingCellStyle BackColor="#E9EBEF" />
<SortedDescendingHeaderStyle BackColor="#4870BE" />
</asp:GridView>
</ContentTemplate>
</asp:UpdatePanel>
</div>
</form>
</asp:Content>