<%
Session.LCID = 1033
Set careerRecords = Server.CreateObject ("ADODB.Recordset")
sql2 = "SELECT * FROM careers where careerId = " & careerId
careerRecords.Open sql2, connect, 1, 2
desc=careerRecords("careerDesc")
experience=careerRecords("careerExp")
'imgpath = Server.MapPath("/images/products/bigimages/")
imgpath = "./images/products/news"
%>
<%=careerRecords("careerDesig")%> |
Department |
<%=careerRecords("careerDept")%> |
Vacancy |
<%Response.Write(careerRecords("careerVac"))%> |
Minimum Qualification |
<%Response.Write(careerRecords("careerQual"))%> |
Experience |
<%=experience%> |
Description |
<%=desc%> |
|
|
|
<%
careerRecords.Close
connect.Close
set careerRecords = nothing
set connect = nothing
%>
|
|
|