views:

40

answers:

2

orkut applicaion , i am applicaion succefully i deployed also my app name ishqiya, i am create first page invite friend but is not crated my second page and how i write back to home button if i link one page to another page how to write back button

A: 

I am not sure if this is what you are looking for

<a href="Previouspage.html">Click me to go to previous page</a>

where

Previouspage.html is the name of your first page.

rahul
A: 

As far as i could understand your question:

If you simply want the going back function, you can use javascript like this:

  history.back(-1);

If you simply want to go to home page; you can simply put a link to home page eg:

 <a href="your_home_page_path.html">Home</a>
Sarfraz