Suppose I have a registration page in my website that contains a registration form:
Create a random token and send it along with the form data as a hidden html element. Bind the token along with the user session and validate it once the form is submitted/posted back. The other guy cannot send this random token as your server will not have that token in the session.
Also use X-Frame-Options header to avoid usage of your page as an iframe in his website. Hope this helps.