I have an ASP.NET application with the structure Next:
ProjetoWeb (raiz projeto)
Compartilhado (pasta)
|---Scripts (pasta)
|----jquery-1.8.0.js
Masters (pasta)
|----Site.master
Cadastros (pasta)
|----ListarCadastros.ASPX
Relatorio (pasta)
|----Vendas (pasta)
|----Vendas.ASPX
I have registered the script on the Master page:
<script src="../Compartilhado/Scripts/jquery.responsivetable.min.js"></script>
For all pages that only have one folder level, it works normally (ex: the page ListCADS.ASPX)
but pages with more levels (eg Sales.ASPX) do not finalize.
I've already changed to:
<script src="../../Compartilhado/Scripts/jquery.responsivetable.min.js">
But then the other pages stopped working.
How to solve this?