|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/compasssysweb/ |
Upload File : |
<%@LANGUAGE="JAVASCRIPT" CODEPAGE="1252"%>
<%
var tfm_orderby = "DateEdited";
var tfm_order = "DESC";
if(String(Request.QueryString("tfm_orderby")) != "undefined") {
tfm_orderby = String(Request.QueryString("tfm_orderby"));
}
if(String(Request.QueryString("tfm_order")) != "undefined") {
tfm_order = String(Request.QueryString("tfm_order"));
}
var sql_orderby = " " + tfm_orderby + " " + tfm_order;
%>
<%
var rsJobList__sql_orderby = "DateEdited";
if (String(sql_orderby) != "undefined" &&
String(sql_orderby) != "") {
rsJobList__sql_orderby = String(sql_orderby);
}
%>
<%
var rsJobList = Server.CreateObject("ADODB.Recordset");
rsJobList.ActiveConnection = "dsn=JobReqDSN;";
rsJobList.Source = "SELECT * FROM Jobs ORDER BY "+ rsJobList__sql_orderby.replace(/'/g, "''") + "";
rsJobList.CursorType = 0;
rsJobList.CursorLocation = 2;
rsJobList.LockType = 1;
rsJobList.Open();
var rsJobList_numRows = 0;
%>
<%
var Repeat2__numRows = 20;
var Repeat2__index = 0;
rsJobList_numRows += Repeat2__numRows;
%>
<%
// *** Recordset Stats, Move To Record, and Go To Record: declare stats variables
// set the record count
var rsJobList_total = rsJobList.RecordCount;
// set the background color toggle
var intBackColor = 0;
// set the number of rows displayed on this page
if (rsJobList_numRows < 0) { // if repeat region set to all records
rsJobList_numRows = rsJobList_total;
} else if (rsJobList_numRows == 0) { // if no repeat regions
rsJobList_numRows = 1;
}
// set the first and last displayed record
var rsJobList_first = 1;
var rsJobList_last = rsJobList_first + rsJobList_numRows - 1;
// if we have the correct record count, check the other stats
if (rsJobList_total != -1) {
rsJobList_numRows = Math.min(rsJobList_numRows, rsJobList_total);
rsJobList_first = Math.min(rsJobList_first, rsJobList_total);
rsJobList_last = Math.min(rsJobList_last, rsJobList_total);
}
%>
<%
// *** Recordset Stats: if we don't know the record count, manually count them
if (rsJobList_total == -1) {
// count the total records by iterating through the recordset
for (rsJobList_total=0; !rsJobList.EOF; rsJobList.MoveNext()) {
rsJobList_total++;
}
// reset the cursor to the beginning
if (rsJobList.CursorType > 0) {
if (!rsJobList.BOF) rsJobList.MoveFirst();
} else {
rsJobList.Requery();
}
// set the number of rows displayed on this page
if (rsJobList_numRows < 0 || rsJobList_numRows > rsJobList_total) {
rsJobList_numRows = rsJobList_total;
}
// set the first and last displayed record
rsJobList_last = Math.min(rsJobList_first + rsJobList_numRows - 1, rsJobList_total);
rsJobList_first = Math.min(rsJobList_first, rsJobList_total);
}
%>
<% var MM_paramName = ""; %>
<%
// *** Move To Record and Go To Record: declare variables
var MM_rs = rsJobList;
var MM_rsCount = rsJobList_total;
var MM_size = rsJobList_numRows;
var MM_uniqueCol = "";
MM_paramName = "";
var MM_offset = 0;
var MM_atTotal = false;
var MM_paramIsDefined = (MM_paramName != "" && String(Request(MM_paramName)) != "undefined");
%>
<%
// *** Move To Record: handle 'index' or 'offset' parameter
if (!MM_paramIsDefined && MM_rsCount != 0) {
// use index parameter if defined, otherwise use offset parameter
r = String(Request("index"));
if (r == "undefined") r = String(Request("offset"));
if (r && r != "undefined") MM_offset = parseInt(r);
// if we have a record count, check if we are past the end of the recordset
if (MM_rsCount != -1) {
if (MM_offset >= MM_rsCount || MM_offset == -1) { // past end or move last
if ((MM_rsCount % MM_size) != 0) { // last page not a full repeat region
MM_offset = MM_rsCount - (MM_rsCount % MM_size);
} else {
MM_offset = MM_rsCount - MM_size;
}
}
}
// move the cursor to the selected record
for (var i=0; !MM_rs.EOF && (i < MM_offset || MM_offset == -1); i++) {
MM_rs.MoveNext();
}
if (MM_rs.EOF) MM_offset = i; // set MM_offset to the last possible record
}
%>
<%
// *** Move To Record: if we dont know the record count, check the display range
if (MM_rsCount == -1) {
// walk to the end of the display range for this page
for (var i=MM_offset; !MM_rs.EOF && (MM_size < 0 || i < MM_offset + MM_size); i++) {
MM_rs.MoveNext();
}
// if we walked off the end of the recordset, set MM_rsCount and MM_size
if (MM_rs.EOF) {
MM_rsCount = i;
if (MM_size < 0 || MM_size > MM_rsCount) MM_size = MM_rsCount;
}
// if we walked off the end, set the offset based on page size
if (MM_rs.EOF && !MM_paramIsDefined) {
if ((MM_rsCount % MM_size) != 0) { // last page not a full repeat region
MM_offset = MM_rsCount - (MM_rsCount % MM_size);
} else {
MM_offset = MM_rsCount - MM_size;
}
}
// reset the cursor to the beginning
if (MM_rs.CursorType > 0) {
if (!MM_rs.BOF) MM_rs.MoveFirst();
} else {
MM_rs.Requery();
}
// move the cursor to the selected record
for (var i=0; !MM_rs.EOF && i < MM_offset; i++) {
MM_rs.MoveNext();
}
}
%>
<%
// *** Move To Record: update recordset stats
// set the first and last displayed record
rsJobList_first = MM_offset + 1;
rsJobList_last = MM_offset + MM_size;
if (MM_rsCount != -1) {
rsJobList_first = Math.min(rsJobList_first, MM_rsCount);
rsJobList_last = Math.min(rsJobList_last, MM_rsCount);
}
// set the boolean used by hide region to check if we are on the last record
MM_atTotal = (MM_rsCount != -1 && MM_offset + MM_size >= MM_rsCount);
%>
<%
// *** Go To Record and Move To Record: create strings for maintaining URL and Form parameters
// create the list of parameters which should not be maintained
var MM_removeList = "&index=";
if (MM_paramName != "") MM_removeList += "&" + MM_paramName.toLowerCase() + "=";
var MM_keepURL="",MM_keepForm="",MM_keepBoth="",MM_keepNone="";
// add the URL parameters to the MM_keepURL string
for (var items=new Enumerator(Request.QueryString); !items.atEnd(); items.moveNext()) {
var nextItem = "&" + items.item().toLowerCase() + "=";
if (MM_removeList.indexOf(nextItem) == -1) {
MM_keepURL += "&" + items.item() + "=" + Server.URLencode(Request.QueryString(items.item()));
}
}
// add the Form variables to the MM_keepForm string
for (var items=new Enumerator(Request.Form); !items.atEnd(); items.moveNext()) {
var nextItem = "&" + items.item().toLowerCase() + "=";
if (MM_removeList.indexOf(nextItem) == -1) {
MM_keepForm += "&" + items.item() + "=" + Server.URLencode(Request.Form(items.item()));
}
}
// create the Form + URL string and remove the intial '&' from each of the strings
MM_keepBoth = MM_keepURL + MM_keepForm;
if (MM_keepBoth.length > 0) MM_keepBoth = MM_keepBoth.substring(1);
if (MM_keepURL.length > 0) MM_keepURL = MM_keepURL.substring(1);
if (MM_keepForm.length > 0) MM_keepForm = MM_keepForm.substring(1);
%>
<%
// *** Move To Record: set the strings for the first, last, next, and previous links
var MM_moveFirst="",MM_moveLast="",MM_moveNext="",MM_movePrev="";
var MM_keepMove = MM_keepBoth; // keep both Form and URL parameters for moves
var MM_moveParam = "index";
// if the page has a repeated region, remove 'offset' from the maintained parameters
if (MM_size > 1) {
MM_moveParam = "offset";
if (MM_keepMove.length > 0) {
params = MM_keepMove.split("&");
MM_keepMove = "";
for (var i=0; i < params.length; i++) {
var nextItem = params[i].substring(0,params[i].indexOf("="));
if (nextItem.toLowerCase() != MM_moveParam) {
MM_keepMove += "&" + params[i];
}
}
if (MM_keepMove.length > 0) MM_keepMove = MM_keepMove.substring(1);
}
}
// set the strings for the move to links
if (MM_keepMove.length > 0) MM_keepMove += "&";
var urlStr = Request.ServerVariables("URL") + "?" + MM_keepMove + MM_moveParam + "=";
MM_moveFirst = urlStr + "0";
MM_moveLast = urlStr + "-1";
MM_moveNext = urlStr + (MM_offset + MM_size);
MM_movePrev = urlStr + Math.max(MM_offset - MM_size,0);
%>
<%
//sort column headers for rsJobList
var tfm_saveParams = "";
var tfm_keepParams = "";
if(tfm_order == "ASC") {
tfm_order = "DESC";
}else{
tfm_order = "ASC";
}
if(tfm_saveParams != "") {
var tfm_params = tfm_saveParams.split(",");
for (var i=0; i < tfm_params.length; i++) {
tfm_keepParams = tfm_keepParams + tfm_params[i] + "=" + Server.URLEncode(Request(tfm_params[i])) + "&";
}
}
var tfm_orderbyURL = Request.ServerVariables("URL") + "?" + tfm_keepParams + "tfm_order=" + tfm_order + "&tfm_orderby=";
%>
<HTML>
<HEAD>
<TITLE>Compass Systems & Programming available jobs: short-term, long-term, and permanent assignments and positions for technology candidates, consultants, and contractors.</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<meta name="keywords" content="Hotlist, current jobs, current contract list, consulting jobs, contracts, assignments, permanent, temporary, Exeter, NH, Information Technology, IT, staffing, consulting, agency, analysis, design, programming, development, custom software, website, web-site, web site, networking, services, short-term, long-term, short term, long term, technical, candidate, consultant, New England, Maine, Massachusetts, New Hampshire, Vermont, Rhode Island, Connecticut, ME, MA, NH, VT, RI, CT, NE, language, VB, VB.NET, Visual Basic, VBScript, VBA, Java, JavaScript, JScript, C, C++, HTML, DHTML, VML, VRML, XML, ASP, ASP.NET, COBOL, RPG, BASIC, FOXPRO, CLIPPER, SQL, environment, .NET, Windows, CE, PDA, Palm, PalmOS, WinNT, Win2000, WinME, Win98, AS400, MVS, IBM, Linux, Unix, Sun, Solaris, Aix, HP, Ethernet, Novell, Netware, database, Oracle, Sybase, SQL Server, DB2, IMS, IDMS, Access, package, SAP, PeopleSoft, Siemens, Oracle, Great Plains, Macola, SQA, QA, Quality Assurance, EDI, software developer, software engineer, administrator">
<meta name="description" content="Compass Systems & Programming, an Exeter NH Information Technology (IT) staffing and consulting agency supplying analysis, design, programming and development, custom software, website design, and networking services to New England (Maine, Massachusetts, New Hampshire, Vermont, Rhode Island, Connecticut, ME, MA, NH, VT, RI, CT) businesses. Hotlist of current jobs available - short and long term consulting assignments, as well as permanent positions - to experienced candidates with expertise in almost any language (VB, VB.NET, Visual Basic, VBScript, VBA, Java, JavaScript, JScript, C, C++, HTML, DHTML, VML, VRML, XML, ASP, ASP.NET, COBOL, RPG, BASIC, FOXPRO, CLIPPER, SQL), any environment (.NET, Windows, CE, PDA, Palm, PalmOS, WinNT, Win2000, WinME, Win98, AS400, MVS, IBM, Linux, Unix, Sun, Solaris, Aix, HP, Ethernet, Novell, Netware), any database (Oracle, Sybase, SQL Server, DB2, IMS, IDMS, Access), any package (SAP, PeopleSoft, Siemens, Oracle, Great Plains, Macola), any IT expertise (QA, Quality Assurance, EDI, software developer, software engineer, administrator).">
<!-- this file contains menus and scroll bar style code -->
<!--#include file="header_include.html" -->
<!-- end file inclusion -->
<div align="center">
<TABLE WIDTH=779 BORDER=0 CELLPADDING=0 CELLSPACING=0 bgcolor="#FFFFFF">
<!--DWLayoutTable-->
<TR>
<TD height="200" COLSPAN=7>
<IMG SRC="images/jobseeker_01.jpg" ALT="" WIDTH=778 HEIGHT=200 border="0" usemap="#Map"></TD>
<TD width="1"> </TD>
</TR>
<TR>
<TD height="32" COLSPAN=2>
<IMG SRC="images/jobseeker_02.gif" WIDTH=258 HEIGHT=32 ALT=""></TD>
<TD width="101">
<a href="javascript:;" onMouseOver="MM_showMenu(window.mm_menu_0617143257_0,0,32,null,'menu01');MM_swapImage('menu01','','images/button_01_on.gif',1)" onMouseOut="MM_startTimeout();MM_swapImgRestore()"><IMG SRC="images/button_01.gif" ALT="" name="menu01" WIDTH=101 HEIGHT=32 border="0" id="menu01"></a></TD>
<TD width="100">
<a href="javascript:;" onMouseOver="MM_showMenu(window.mm_menu_0617144454_0,0,32,null,'menu02');MM_swapImage('menu02','','images/button_02_on.gif',1)" onMouseOut="MM_startTimeout();MM_swapImgRestore()"><IMG SRC="images/button_02.gif" ALT="" name="menu02" WIDTH=100 HEIGHT=32 border="0" id="menu02"></a></TD>
<TD width="101">
<a href="javascript:;" onMouseOver="MM_showMenu(window.mm_menu_0617145226_0,0,32,null,'menu03');MM_swapImage('menu03','','images/button_03_on.gif',1)" onMouseOut="MM_startTimeout();MM_swapImgRestore()"><IMG SRC="images/button_03.gif" ALT="" name="menu03" WIDTH=101 HEIGHT=32 border="0" id="menu03"></a></TD>
<TD width="100">
<a href="gsa_nonfl.shtml" onMouseOver="MM_swapImage('menu04','','images/button_04_on.gif',1)" onMouseOut="MM_swapImgRestore()"><IMG SRC="images/button_04.gif" ALT="" name="menu04" WIDTH=100 HEIGHT=32 border="0" id="menu04"></a></TD>
<TD width="118">
<a href="contact_nonfl.shtml" onMouseOver="MM_swapImage('menu05','','images/button_05_on.gif',1)" onMouseOut="MM_swapImgRestore()"><IMG SRC="images/button_05.gif" ALT="" name="menu05" WIDTH=118 HEIGHT=32 border="0" id="menu05"></a></TD>
<TD> </TD>
</TR>
<TR>
<TD width="249" ROWSPAN=3 valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td colspan="2" rowspan="2" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td height="31" colspan="3" valign="top"><img src="images/search_top.gif" width="203" height="31"></td>
</tr>
<tr>
<td width="45" rowspan="2" valign="top"><img src="images/search_left.gif" width="45" height="69"></td>
<form action="ss.shtml" target="ss"><td width="144" height="45" valign="top"><div align="center"><font size="2" face="Verdana, Arial, Helvetica, sans-serif">Search
this site:</font>
<input type=text name="s" size="10">
<input type=submit value="Go" onClick="window.open('', 'ss', 'width=500,height=460,scrollbars,resizable')">
</div></td></form>
<td width="14" align="right" valign="top"><img src="images/search_right.gif" width="14" height="45"></td>
</tr>
<tr>
<td height="24" colspan="2" valign="top"><img src="images/search_bottom.gif" width="158" height="24"></td>
</tr>
</table></td>
<td width="45" height="94" valign="top"><img src="images/jobseeker_09.gif" width="45" height="94"></td>
<td width="1"></td>
</tr>
<tr>
<td rowspan="3" valign="top"><img src="images/jobseeker_11.gif" width="45" height="61"></td>
<td height="6"></td>
</tr>
<tr>
<td width="28" height="29" valign="top"><img src="images/jobseeker_12.gif" width="28" height="29"></td>
<td width="175" rowspan="4" valign="top" bgcolor="#F5F5F5"><img src="images/photos/ks88065.jpg" width="175" height="263"></td>
<td></td>
</tr>
<tr>
<td rowspan="3" valign="top" bgcolor="#F5F5F5"><!--DWLayoutEmptyCell--> </td>
<td height="26"></td>
</tr>
<tr>
<td height="208" valign="top"><img src="images/jobseeker_21.gif" width="45" height="208"></td>
<td></td>
</tr>
<tr>
<td height="19" valign="top"><img src="images/jobseeker_24.gif" width="45" height="19"></td>
<td></td>
</tr>
<tr>
<td height="44" colspan="3" valign="top" bgcolor="#F5F5F5"><!--DWLayoutEmptyCell--> </td>
<td></td>
</tr>
</table>
</TD>
<TD COLSPAN=6 ROWSPAN=3 valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<!--DWLayoutTable-->
<tr>
<td height="20" colspan="3"><div align="right"><a href="jobseeker.asp"><font color="#990007" size="1" face="Arial, Helvetica, sans-serif">Flash
version</font></a></div></td>
</tr>
<tr>
<td height="21" colspan="3" valign="top"><div align="center"><strong><font color="#000000" size="4" face="Verdana, Arial, Helvetica, sans-serif">List
of Jobs</font></strong></div></td>
</tr>
<tr>
<td width="509" height="51" valign="top"><div align="right"><strong><font color="#3A64A0" size="4" face="Arial, Helvetica, sans-serif"><a href="http://www.google.com"><img src="images/boss_alert.gif" alt="Boss Alert! - Go to Google Search Engine" width="50" height="61" border="0"></a></font></strong></div>
</td>
<td width="20" valign="top"><!--DWLayoutEmptyCell--> </td>
<td width="1"> </td>
</tr>
<tr>
<td height="61" colspan="3" valign="top"><div align="center">
<form name="form1" method="get" action="results_nonfl.asp">
<strong><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif">Keywords </font></strong><font color="#000000" size="2" face="Verdana, Arial, Helvetica, sans-serif">(Job
Title, Skills, Location, etc.)</font><br>
<input name="keywords" type="text" id="keywords" value="" size="30">
<input type="submit" name="Submit" value="Search">
</form>
</div></td>
</tr>
<tr>
<td height="20" colspan="3" valign="top"><!--DWLayoutEmptyCell--> </td>
</tr>
<tr>
<td height="20" valign="top"><div align="right"><font face="Arial, Helvetica, sans-serif"><font size="2"><font face="Arial, Helvetica, sans-serif"><font size="3"><font size="2"><font color="#9900CC"><font color="#000000"><%=(rsJobList_first)%> - <%=(rsJobList_last)%> of <%=(rsJobList_total)%> | <A HREF="<%=MM_moveFirst%>"><font color="#000000">First</font></A> | <A HREF="<%=MM_movePrev%>"><font color="#000000">Previous</font></A> | <A HREF="<%=MM_moveNext%>"><font color="#000000">Next</font></A> | <A HREF="<%=MM_moveLast%>"><font color="#000000">Last</font></A></font></font></font></font></font></font></font></div>
</td>
<td valign="top" bgcolor="#FFFFFF"><!--DWLayoutEmptyCell--> </td>
<td> </td>
</tr>
<tr>
<td height="55" colspan="3" valign="top"><font color="#666666" size="2" face="Arial, Helvetica, sans-serif"> </font>
<table width="100%" border="0" cellspacing="1" cellpadding="1">
<tr bgcolor="#F5F5F5">
<td width="33%"><a href="<%=tfm_orderbyURL%>Title"><strong><font color="#3A64A0" size="2" face="Arial, Helvetica, sans-serif">Job
Title</font></strong></a></td>
<td width="22%"><a href="<%=tfm_orderbyURL%>WebLocation"><strong><font color="#3A64A0" size="2" face="Arial, Helvetica, sans-serif">Location</font></strong></a></td>
<td width="25%"><a href="<%=tfm_orderbyURL%>JobType"><strong><font color="#3A64A0" size="2" face="Arial, Helvetica, sans-serif">Job
Type</font></strong></a></td>
<td width="20%"><a href="<%=tfm_orderbyURL%>DateEdited"><strong><font color="#3A64A0" size="2" face="Arial, Helvetica, sans-serif">Date</font></strong></a></td>
</tr>
<% while ((Repeat2__numRows-- != 0) && (!rsJobList.EOF)) { %>
<% if (intBackColor == 0) { %>
<tr bgcolor="#FFFFFF">
<% intBackColor = 1
} %>
<% else {%>
<tr bgcolor="#F5F5F5">
<% intBackColor = 0
} %>
<!-- <tr> -->
<td><A HREF="jobdetail_nonfl.asp?<%= MM_keepNone + ((MM_keepNone!="")?"&":"") + "JobID=" + rsJobList.Fields.Item("Job ID #").Value %>"><font color="#666666" size="2" face="Arial, Helvetica, sans-serif">
<!-- Show New Job icon -->
<%
// highlight new jobs with icon
//today = new Date();
//if ((rsJobList.Fields.Item("DateEdited").Value) >= (today.getDate() - 10)) { %>
<!-- <img src="images/newjob.gif" width="31" height="12" border="0" alt="New Job within the last 10 days"> -->
<%
//}
%>
<!-- End New Job icon -->
<%=(rsJobList.Fields.Item("Title").Value)%></font></A></td>
<td><font color="#666666" size="2" face="Arial, Helvetica, sans-serif"><%=(rsJobList.Fields.Item("WebLocation").Value)%></font></td>
<td><font color="#666666" size="2" face="Arial, Helvetica, sans-serif"><%=(rsJobList.Fields.Item("JobType").Value)%></font></td>
<td><font color="#666666" size="2" face="Arial, Helvetica, sans-serif"><%=(rsJobList.Fields.Item("DateEdited").Value)%></font></td>
</tr>
<%
Repeat2__index++;
rsJobList.MoveNext();
}
%>
</table></td>
</tr>
<tr>
<td height="51" valign="top"><div align="right"></div>
</td>
<td valign="top"><!--DWLayoutEmptyCell--> </td>
<td></td>
</tr>
<tr>
<td height="83" colspan="3" valign="top">
<%
rsJobList.Close();
%>
</td>
</tr>
<tr>
<td height="30" colspan="3" valign="top"><!--DWLayoutEmptyCell--> </td>
</tr>
</table>
</TD>
<TD height="369"> </TD>
</TR>
<TR>
<TD height="19"><!--DWLayoutEmptyCell--> </TD>
</TR>
<TR>
<TD height="28"></TD>
</TR>
<TR>
<TD height="105" colspan="8" valign="top">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="241" height="105" valign="bottom" bgcolor="#F5F5F5"><!--DWLayoutEmptyCell--> </td>
<td width="523" valign="bottom">
<!-- this file contains bottom menu code standard on each page -->
<!--#include file="menu_bottom_nonfl.html" -->
<!-- end file inclusion -->
</td>
</tr>
</table>
</TD>
</TR>
<tr>
<td height="1"></td>
<td width="10"></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
</TABLE>
</div>
</BODY>
</HTML>