hallo,
kann mir jemand bzw, weiß jemand wo ich sowas erklärt
finde? auf w3schools.com finde ich nur diese vorlage:
<script type="text/javascript">
function movenext() {
x=xmldso.recordset
if (x.absoluteposition < x.recordcount) {
x.movenext()
}
}
function moveprevious() {
x=xmldso.recordset
if (x.absoluteposition > 1) {
x.moveprevious()
}
}
</script>