// Dynamically generate the body string according to the attributes in the // configuration file specified as the argument of dynBody() bodystr = dynBody("settings.cfg"); if(!dbCheck()) { redirect("../error.htm?error=dbfail"); } cursor = database.cursor("select * from jobs where jobid='" + request.jobid + "'"); cursor.next(); // Initialize the cursor. ecursor = database.cursor("select url, busname from employer where empid='" + cursor.empid + "'"); ecursor.next(); Job Profile for Job #<server>write(cursor.jobid)</server>

Description of Job #write(cursor.jobid)

Job Location

if(cursor.country != null) write("");
Employer Name: write(ecursor.busname);
City: write(cursor.lcity);
State: write(cursor.lstate);
Country: " + cursor.country + "
Salary Range: write("$" + cursor.salarylow + "k to $" + cursor.salaryhigh + "k");
Minimum Education Required: write(cursor.mineduc);
Years of Experience Required: write(cursor.minyearsexp);
Job Titlewrite(cursor.title);
Job Description descrip = unEscString(cursor.desc); write(descrip);
Contact Namewrite(cursor.contactname);
Contact E-mailwrite(cursor.contactemail);

Return to the List of Jobs.

Return to the Seeker Home Page.