<% option explicit Response.Buffer = true if session("company_id") <> "" then dim conn dim ssql dim rs dim job_description %> <% ssql = "select * from tbl_career where job_id = '" & Request.QueryString("job_id") & "'" set rs = server.CreateObject("adodb.recordset") rs.Open ssql,conn,3,3 job_description = replace(rs("job_description"),"
",vbcrlf, 1, -1, 1) %>
EDIT CAREER OPPORTUNITIES
JOB TITLE :
DESCRIPTION :
','_self')" />
<% rs.Close conn.Close set rs = nothing set conn = nothing else Response.Redirect "../../index.asp" end if %>