Hi - I know how to do this for an .RSP page.

For an RSP page - I can use the following code


HTML Code:
private m_embedded = getParameter("embedded", "false")
private m_libpath
set macros on
set fixed on 
if isServer()
	m_libpath = "../../library/"
else
	m_libpath = "lib:/"
endif
if m_embedded = "false"
	? '<html>'
	? '<head>'
	? '<link rel="stylesheet" href="&m_libpath/bootstrap-3.3.4/css/bootstrap.min.css">'
	? '<script src="&m_libpath/jquery-1.10.2/jquery-1.10.2.min.js" type="text/javascript"></script>'
	? '<script src="&m_libpath/bootstrap-3.3.4/js/bootstrap.min.js" type="text/javascript"></script>'
	? '</head>'
	
endif
%>
How do I accomplish the same thing for a .JSSP?

Thanks.

Herb