Bootstrap is working when I run a jsp on it's own, but when I run my project (jsp goes to servlet and the servlet goes to another jsp through RequestDispatcher (which should use bootstrap styles) the bootstrap is no longer working.
I have downloaded bootstrap js and css files and have this in my jsp -
<link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src=../bootstrap/js/bootstrap.min.js"></script>
Is there something else I need to do to make it work through the servlet?