⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sch_search_base.asp

📁 直接附加数据库! 修改 Include/ Class_Main.asp 为自己信息 后台admin admin 绍兴人才网程序
💻 ASP
字号:
<!--#include file="../Include/Class_Conn.asp" -->
<!--#include file="../Include/Class_Main.asp" -->
<% 
Dim SQL,Rs
Dim t_Properity,t_PublishDate,t_Key

t_Properity    = Replace_Text(Request("Properity"))
t_PublishDate  = Replace_Text(Request("PublishDate")) 
t_Key          = Replace_Text(Request("Key")) 

SQL = "Select Schid,SchoolName,Properity,Locus_Area,Locus_City,ContactPerson,Phone,LastUpdate_Time From [pH_School_Base] Where Len(SchoolName)>0 And VipFlag<>0 And SchoolName Like '%"&t_Key&"%'"
If t_Properity <> "0" Then
 SQL = SQL&" And Properity="&Cstr(t_Properity)
End if
If t_PublishDate <> "0" Then
 SQL = SQL&" And DateDiff(d,LastUpdate_Time,GetDate())<"&t_PublishDate
End if

SQL = SQL&"  Order By VipFlag Asc,LastUpdate_Time Desc"
Set Rs = Server.CreateObject("ADODB.Recordset")
Rs.open SQL,Conn,1,1
Rs.Pagesize = 20
Psize       = Rs.PageSize
PCount      = Rs.PageCount
RCount      = Rs.RecordCount

PageNo = Cint(Request.QueryString("PageNo"))
If PageNo < 1 Then
 PageNo = 1
Elseif PageNo > PCount Then
 PageNo = PCount
End if
If Not Rs.Eof Then Rs.AbsolutePage = PageNo

 %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<script language="JavaScript" src="../js/Company_Basicinfo.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<LINK href="../Css/Style.css" type=text/css rel=stylesheet>
<title><%= Cls_WebName %> -- 院校信息</title>
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->
</script>
</head>
<body>
<table width="768" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
  <tr>
    <td><!--#include file="../Include/Header.asp" --></td>
  </tr>
</table>
<table width="768" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
  <tr>
    <td align="center">
<table width="760" border="0" cellspacing="0" cellpadding="4">
        <tr> 
          <td width="50%" height="25">共<Font color="#FF0000"><%= RCount %></Font>条 分<Font color="#FF0000"><%= PCount %></Font>页 | 当前第<Font color="#FF0000"><%= PageNo %></Font>页</td>
          <td width="50%" align="right">
		  <% 
		  If PageNo > 1 Then
		   Response.write "<a href=""?PageNo=1&Properity="&t_Properity&"&PublishDate="&t_PublishDate&"&Key="&t_Key&""">首页</a>&nbsp;"
		   Response.write "<a href=""?PageNo="&PageNo-1&"&Properity="&t_Properity&"&PublishDate="&t_PublishDate&"&Key="&t_Key&""">上页</a>&nbsp;"    
		  Else
		   Response.write "首页&nbsp;"
		   Response.write "上页&nbsp;" 
		  End if
		   %>
           <select name="menu1" onChange="MM_jumpMenu('parent',this,0)" style="width:40px;">
		    <% For i = 1 to PCount %>
                <option value="?PageNo=<%= i %>&Properity=<%= t_Properity %>&PublishDate=<%= t_PublishDate %>&Key=<%= t_Key %>" <% If i = PageNo Then Response.write "Selected"%>><%=i%></option>
		    <% Next %>
           </select>
            <% 
		  If PageNo < PCount Then
		   Response.write "<a href=""?PageNo="&PageNo+1&"&Properity="&t_Properity&"&PublishDate="&t_PublishDate&"&Key="&t_Key&""">下页</a>&nbsp;"
		   Response.write "<a href=""?PageNo="&PCount&"&Properity="&t_Properity&"&PublishDate="&t_PublishDate&"&Key="&t_Key&""">尾页</a>"   
		  Else
		   Response.write "下页&nbsp;"
		   Response.write "尾页" 
		  End if
		   %>

		  
		  </td>
        </tr>
      </table>
      <table width="760" border="0" cellpadding="2" cellspacing="1" bgcolor="eeeeee">
        <tr> 
          <td valign="top" bgcolor="#FFFFFF">
		 
            <table width="100%" border="0" align="center" cellpadding="2" cellspacing="1">
              <tr align="center"> 
                <td width="25%" height="25" bgcolor="eeeeee">院校名称</td>
                <td width="11%" height="25" bgcolor="eeeeee">院校性质</td>
                <td width="13%" height="25" bgcolor="eeeeee">工作地区</td>
                <td width="9%" height="25" bgcolor="eeeeee">毕业生</td>
                <td width="12%" height="25" bgcolor="eeeeee">联系人</td>
                <td width="17%" height="25" bgcolor="eeeeee">联系电话</td>
                <td bgcolor="eeeeee">发布日期</td>
              </tr>
              <% 
For i = 1 to Psize/2
 If Rs.Eof Then Exit For
 Schid               = Rs("Schid")
 SchoolName     	 = Rs("SchoolName")
 Properity			 = Rs("Properity")
 Locus_Area			 = Rs("Locus_Area")
 Locus_City			 = Rs("Locus_City")	
 ContactPerson		 = Rs("ContactPerson")
 Phone    			 = Rs("Phone")
 LastUpdate_Time     = FormatDateTime(Rs("LastUpdate_Time"),2)
 
 SchoolType = Cls_SchoolType(Properity)
 '//毕业生数目
 SudCount = 0
 Set Re = Conn.Execute("Select Count(*) From [pH_School_Student] Where Schid='"&Schid&"'")
 If Not Re.eof Then SudCount = Re(0)
 Re.Close
 %>
              <tr> 
                <td height="25"><a href="Info/Index.asp?param-<%= Schid %>.html" target="_blank"><u><%= SchoolName %></u></a></td>
                <td height="25" align="center"><%= SchoolType %></td>
                <td height="25" align="center"><%= Locus_Area&Locus_City %></td>
                <td height="25" align="center"><%= SudCount %></td>
                <td height="25" align="center"><%= ContactPerson %></td>
                <td height="25" align="center"><%= Phone %></td>
                <td height="25" align="center"><%= LastUpdate_Time %></td>
              </tr>
              <% 
 Rs.Movenext
 If Rs.Eof Then Exit For
 Schid               = Rs("Schid")
 SchoolName     	 = Rs("SchoolName")
 Properity			 = Rs("Properity")
 Locus_Area			 = Rs("Locus_Area")
 Locus_City			 = Rs("Locus_City")	
 ContactPerson		 = Rs("ContactPerson")
 Phone    			 = Rs("Phone")
 LastUpdate_Time     = FormatDateTime(Rs("LastUpdate_Time"),2)
 
 SchoolType = Cls_SchoolType(Properity)
 '//毕业生数目
 SudCount = 0
 Set Re = Conn.Execute("Select Count(*) From [pH_School_Student] Where Schid='"&Schid&"'")
 If Not Re.eof Then SudCount = Re(0)
 Re.Close
   %>
              <tr bgcolor="f9f9f9"> 
                <td height="25"><a href="Info/Index.asp?param-<%= Schid %>.html" target="_blank"><u><%= SchoolName %></u></a></td>
                <td height="25" align="center"><%= SchoolType %></td>
                <td height="25" align="center"><%= Locus_Area&Locus_City %></td>
                <td height="25" align="center"><%= SudCount %></td>
                <td height="25" align="center"><%= ContactPerson %></td>
                <td height="25" align="center"><%= Phone %></td>
                <td height="25" align="center"><%= LastUpdate_Time %></td>
              </tr>
              <%
 Rs.Movenext 
Next
 %>
            </table>
		  
			</td>
        </tr>
      </table> 
<table width="760" border="0" cellspacing="0" cellpadding="4">
        <tr> 
          <td width="50%" height="25">共<Font color="#FF0000"><%= RCount %></Font>条 分<Font color="#FF0000"><%= PCount %></Font>页 | 当前第<Font color="#FF0000"><%= PageNo %></Font>页</td>
          <td width="50%" align="right">
		  <% 
		  If PageNo > 1 Then
		   Response.write "<a href=""?PageNo=1&Properity="&t_Properity&"&PublishDate="&t_PublishDate&"&Key="&t_Key&""">首页</a>&nbsp;"
		   Response.write "<a href=""?PageNo="&PageNo-1&"&Properity="&t_Properity&"&PublishDate="&t_PublishDate&"&Key="&t_Key&""">上页</a>&nbsp;"    
		  Else
		   Response.write "首页&nbsp;"
		   Response.write "上页&nbsp;" 
		  End if
		   %>
           <select name="menu1" onChange="MM_jumpMenu('parent',this,0)" style="width:40px;">
		    <% For i = 1 to PCount %>
                <option value="?PageNo=<%= i %>&Properity=<%= t_Properity %>&PublishDate=<%= t_PublishDate %>&Key=<%= t_Key %>" <% If i = PageNo Then Response.write "Selected"%>><%=i%></option>
		    <% Next %>
           </select>
            <% 
		  If PageNo < PCount Then
		   Response.write "<a href=""?PageNo="&PageNo+1&"&Properity="&t_Properity&"&PublishDate="&t_PublishDate&"&Key="&t_Key&""">下页</a>&nbsp;"
		   Response.write "<a href=""?PageNo="&PCount&"&Properity="&t_Properity&"&PublishDate="&t_PublishDate&"&Key="&t_Key&""">尾页</a>"   
		  Else
		   Response.write "下页&nbsp;"
		   Response.write "尾页" 
		  End if
		   %>

		  
		  </td>
        </tr>
      </table>
</td>
  </tr>
</table>
<table width="768" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
  <tr> 
    <td>
      <!--#include file="../Include/Footer.asp" -->
    </td>
  </tr>
</table>

</body>
</html>
<% 
Rs.Close
Set Rs = Nothing
Call CloseDB
 %>

⌨️ 快捷键说明

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