search.aspx

来自「CRM系统源码」· ASPX 代码 · 共 46 行

ASPX
46
字号
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Search.aspx.cs" Inherits="CRM.WEB.Bussiness.adcustomer.Search" %>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>查询客户</title>
    <link href="../../Css/Common.css" type="text/css" rel="stylesheet" />
    <link href="../../Css/TabPage.css" type="text/css" rel="stylesheet" />
</head>
<script language="javascript" type="text/jscript">
<!--
function openWin(url,w,h)
 {
     var top=(screen.availHeight-h)/2;
     var left=(screen.availWidth-w)/2;
     var win=window.open(url, "新窗口", "height="+h+", width="+w+
     ", top="+top+", left="+left+", toolbar=0, menubar=0, scrollbars=1, resizable=0,location=0, status=1");
     win.focus();
 } 
 //--> 
</script>
<body>
    <form id="form1" runat="server">
 <table width="100%" border="0" cellpadding="5" cellspacing="1" class="border">
        <tr class="tdbg" >
                <td align="left" style="width: 70%" valign="middle">
                    &nbsp;资源类型:<asp:DropDownList ID="ddlType" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ddlType_SelectedIndexChanged">
      </asp:DropDownList>
                    &nbsp; &nbsp; 网站名称:<asp:DropDownList ID="ddlSource" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ddlSource_SelectedIndexChanged">
          <asp:ListItem>--请选择--</asp:ListItem>
      </asp:DropDownList>
                    &nbsp;&nbsp;
                    <asp:Label ID="lblweb" runat="server" Text="http://"></asp:Label>
       <asp:TextBox ID="txtWebStie" runat="server"></asp:TextBox>
       <asp:Button ID="btnFind" runat="server" OnClick="btnFind_Click" CssClass="button" Text="搜 索"/>
                  </td>
                <td align="right" class="style3" style="width: 30%">
                <input type="button" value="创建客户" class="button" onclick="openWin('OnlineCustomer.aspx','600','400');" id="Button1" style="width: 100px" />
                    <input type="button" value="添加资源" class="button" onclick="openWin('../../Setting/addata/addSource.aspx','500','350');" id="btnSource" style="width: 80px" />
                     </td>
            </tr>
        </table>
    </form>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?