Import local CSS file into a procedure
865450Jun 3 2011 — edited Jun 7 2011Hi everyone,
I got a PL/SQL Web Toolkit project not online (url : http://127.0.0.1:8080/dad/my_procedure).
And I just want to know how to import a local CSS file into this procedure...
I tried to do something like this :
htp.print('<link href="'C:/Users/Me/Desktop/css/filecss.css" rel="stylesheet" type="text/css" />');
or even
htp.print('<link href="/css/filecss.css" rel="stylesheet" type="text/css" />');, with no success...
In reality I don't know what's the root directory for a project like this. :(
Thans you !