> function testForReload(){
> var lok = window.location.href;
> lok = lok + '&snyd=true'
> window.location.href = lok;
> window.location.reload(true);
> }
Kan man lave noget, så en session har fat i, hvilken side du kigger på?!
I ASP..?!
<script>
<%
strP = Request.Querystring("p")
strC = Request.Querystring("snyd")
%>
lok = window.location.href + '&snyd=true';
function naesteSide() {
window.location.href = "
http://"+location.host+""+location.pathname + "?p=" +
(<%= strP %>+1)
}
function forrigeSide() {
window.location.href = "
http://"+location.host+""+location.pathname + "?p=" +
(<%= strP %>-1)
}
function snyd() {
<% If strC = "" Then %>window.location.replace(lok);<% End If %>
}
<%
If strP = Session("side") Then
Response.Write "snyd();"
End If
Session("side") = strP
%>
</script>
<input type="button" onClick="forrigeSide()" value="Forrige">
<input type="button" onClick="naesteSide()" value="Næste">
MVH Jonas (aka Juke)
--
Vil du lære at kode HTML, XHTML, CSS, SSI eller ASP?
- Pædagogiske tutorials på dansk
- Kom godt i gang med koderne
KLIK HER! =>
http://www.html.dk/tutorials