Advertisement
Advertisement
| 05.15.2008 at 08:55AM PDT, ID: 23405675 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
|
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
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: |
<%@ Page Language="VB" MasterPageFile="~/TBMasterPage.Master" AutoEventWireup="false" CodeFile="sdbSearch.aspx.vb" Inherits="sdb_sdbSearch" title="Untitled Page" %>
<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<div class="SHD">
<asp:HyperLink ID="HyperLink3" runat="server" ImageUrl="~/images/icons/search.gif" ToolTip="Perform another Search" NavigateUrl="~/sdb/default.aspx" /></div>
<div align="center"><asp:Image ID="Image1" ImageUrl="~/images/sdb_searchbyUIC.png" runat="server" /></div>
<br />
<asp:Label ID="label_1" runat="server" CssClass="SHD">Enter a few characters of the UIC</asp:Label>
<br />
<asp:Table ID="Table1" runat="server">
<asp:TableRow>
<asp:TableCell>
<asp:TextBox ID="txtuicSearch" runat="server" Width="75px" />
</asp:TableCell>
<asp:TableCell>
<asp:Button ID="search1" runat="server" Text="Search" />
</asp:TableCell>
<asp:TableCell>
<asp:UpdateProgress DisplayAfter="150" ID="UpdateProgress1" runat="server" DynamicLayout="true">
<ProgressTemplate>
<img alt="Loading" src="../images/loading.gif" />
</ProgressTemplate>
</asp:UpdateProgress>
</asp:TableCell>
</asp:TableRow>
</asp:Table>
<cc1:AutoCompleteExtender ID="AutoCompleteExtender1" Enabled="true"
MinimumPrefixLength="2" EnableCaching="true"
runat="server" ServiceMethod="GetUICList"
ServicePath="~/uicAutoComplete.asmx" TargetControlID="txtuicSearch"
CompletionInterval="250" />
<asp:SqlDataSource ID="sqlDsCustomers" runat="server" ConnectionString="<%$ ConnectionStrings:ToolBox %>"
SelectCommand="SELECT B.SDB_ID, A.COMMAND, A.UIC, A.UNIT, C.STAMIS_NAME , D.STAMIS_VERSION, C.LIN
FROM TB_CUSTOMER_INFO A INNER JOIN SDB_MASTER_RECORD B ON A.CUSTOMERID = B.CUSTOMERID
JOIN STAMIS C ON B.STAMIS_ID = C.STAMIS_ID
JOIN STAMIS_VERSION D ON B.STAMIS_VER_ID = D.VER_ID
WHERE UIC LIKE @UIC + '%'
ORDER BY A.COMMAND, C.STAMIS_NAME">
<SelectParameters>
<asp:ControlParameter ControlID="txtUICSearch" Name="UIC" />
</SelectParameters>
</asp:SqlDataSource>
<asp:GridView ID="GridView1" runat="server" SelectedIndex="0" DataSourceID="sqlDsCustomers" AllowPaging="true" OnSelectedIndexChanged="GridView1_SelectedIndexChanged" AutoGenerateSelectButton="true">
</asp:GridView>
<br />
<asp:Panel ID="Panel1" runat="server" CssClass="modalPopup" Style="display: none" Width="500px" Height="500px">
<asp:GridView ID="GridView2" runat="server" CssClass="SHD" />
<asp:Button ID="btnOK" runat="server" Text="Close" />
</asp:Panel>
<cc1:ModalPopupExtender ID="GridView2_ModalPopupExtender" runat="server"
BackgroundCssClass="modalBackground" Enabled="True"
OkControlID="btnOK" PopupControlID="Panel1" TargetControlID="Button1" />
<asp:Button ID="Button1" runat="server" Visible="false" />
</asp:Content>
|