// 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 employer where empid = '" + request.empid + "'"); cursor.next(); // Initialize the cursor. Employer Profile for <server>write(cursor.busname)</server>

Employer Profile for write(cursor.busname)

Employer Nameif (cursor.busname != null) { write(cursor.busname); }
Address1if (cursor.addr1 != null) { write(cursor.addr1); }
Address2if (cursor.addr2 != null) { write(cursor.addr2); }
Cityif (cursor.city != null) { write(cursor.city); }
Stateif (cursor.state != null) { write(cursor.state); }
Zipif (cursor.postalcode != null) { write(cursor.postalcode); }
Country if(cursor.country != null) {write(cursor.country);}
WWW URLif (cursor.url != null) { write("" + cursor.url+ "");}
E-mailif (cursor.email != null) { write("" + cursor.email + ""); }
Phoneif (cursor.busphone != null) { write(cursor.busphone); }
Faxif (cursor.busfax != null) { write(cursor.busfax); }
Description descrip = unEscString(cursor.desc); // de-code the stored string (see lib/sqlstr.js) write(descrip);
Contact Nameif (cursor.contactname != null) { write(cursor.contactname); }
Contact Phoneif (cursor.contactemail != null) { write(cursor.contactemail); }
Contact Fax if (cursor.contactphone != null) { write(cursor.contactphone); }
Contact E-mailif (cursor.contactfax != null) { write(cursor.contactfax); }
if (client.usertype == "seeker") { write("") write("") } else if (client.usertype == "employer") { write("") write("") } else if (client.usertype == "admin") { write("") write("") }

Return to the Seeker Home Page.

Return to the Employer Home Page.

Return to the Administration Home Page.

Return to the Employer Profile List.

Return to the WorkNet Home Page.