Brenden Kehren,
In my code I have this:
<PreviousPageTemplate>
<a href="<%# URLHelper.GetAbsoluteUrl(Convert.ToString(Eval("PreviousURL", true))) %>" >Previous</a>
</PreviousPageTemplate>
<NextPageTemplate>
<a href="<%# URLHelper.GetAbsoluteUrl(Convert.ToString(Eval("NextURL", true)))%>">Next</a>
</NextPageTemplate>
<PreviousGroupTemplate>
<a href="<%# URLHelper.GetAbsoluteUrl(Convert.ToString(Eval("PreviousGroupURL", true))) %>">...</a>
</PreviousGroupTemplate>
<NextGroupTemplate>
<a href="<%# URLHelper.GetAbsoluteUrl(Convert.ToString(Eval("NextGroupURL", true)))%>">...</a>
</NextGroupTemplate>
but in the source page I have html:
`<div class="pagination">
<a href="http://local/en/test">Previous</a>
<a href="/en/test">1</a>
<span>2</span>
<a href="/en/test?strona=3">3</a>
<a href="http://local/en/test?strona=3" >Next</a>
</div>`