hi dear friends
we have two methods for linking pages
1 - using <a>
2 - using <anchor>
but it's not the same :
we use <a> as we know in html (XHTML now)
but we use <anchor> in wml (for mobile browsers)
the main form for <a> is :
<a href="" target="" title="">link</a>
the main form for <anchor> is :
<anchor>link
<go href="" />
</anchor>
also <anchor > has property of do some things like go bak to the previous page as :
<anchor>previous page
<prev />
</anchor>
or refreshing the page as :
<anchor>refresh
<go href="samepage.wml" />
<refresh>
</anchor>
so ANCHOR for WML language not use in XHTML
hope it's clear
reinhout : we can link pages also by using <a> with name and this is the main form :
<a name="any">
you got it like that :
1 - same page
<a href="#any">
2 - another page
<a href="http://www.web.com/#any">
THANX
______________