Hello everyone,
My aim is to include content dynamically in JSP but I have no means to tests and I don't know JSP.
My code is already working in PHP and I would simply need some help to convert it to JSP...
My PHP code is :
echo file_get_contents("http://www.myserver.com/newsletter/?action=detailnewsextern&profil=CocaCola&extern=1&inter_lang=fr&limit=3&".$_SERVER["QUERY_STRING"]);
Is it possible to do something like this or not ? And if now, how ?
<jsp:include page="http://www.myserver.com/newsletter/?action=detailnewsextern&profil=CocaCola&extern=1&inter_lang=fr&limit=3&" . request.getQueryString(); />
If someone could give me a hint it would be great !
Thanks a lot !
Denis