page-link href camelCase
I am using the pagination and the url of my project I have them encrypted, the problem is that when the link of the pages is created everything is created in lowercase type CamellCase, this generates an error when decrypting because the key is different
Ejemplo
https://localhost:80/Controller/Index?id=HXN9rimuo47ah/jG1tyd6w==
"<ul class="pagination">...
<li class="page-item">
<a class="page-link" href="/Controller/index?p=2&filtro=hxn9rimuo47ah%2Fjg1tyd6w%3D%3D">2</a>
</li>
"
The parameters of my url are encrypted and the pager when setting the link lowers them, generating an error because the decryptor does not recognize the parameters because they have changed.
URL: https://localhost:44323/Controller/Index?filtro=HXN9rimuo47ah/jG1tyd6w== the pager setting the link https://localhost:44323/Controller/Index?filtro=hxn9rimuo47ah/jG1tyd6w== hxn9 from the beginning puts it in lower case
The parameters of my url are encrypted and the pager when setting the link lowers them, generating an error because the decryptor does not recognize the parameters because they have changed.
URL: https://localhost:44323/Controller/Index?filtro=HXN9rimuo47ah/jG1tyd6w== the pager setting the link https://localhost:44323/Controller/Index?filtro=hxn9rimuo47ah/jG1tyd6w== hxn9 from the beginning puts it in lower case
I attach the configuration
<cs-pager cs-paging-pagesize="@Model.PageSize"
cs-paging-pagenumber="@Model.PageNumber"
cs-paging-totalitems="@Model.TotalItems"
cs-pagenumber-param="p"
asp-controller="Tm_ActividadCaso"
asp-action="Index"
cs-show-first-last="true"
cs-suppress-empty-nextprev="true"
cs-remove-nextprev-links="false"
cs-suppress-inactive-firstlast="true"
cs-first-page-text="Primera"
cs-last-page-text="Ultima"
cs-pager-li-current-class="page-item active"
cs-pager-li-other-class="page-item"
cs-pager-li-non-active-class="page-item disabled"
cs-pager-link-current-class="page-link"
cs-pager-link-other-class="page-link">
</cs-pager>
I appreciate your collaboration
Gracias