Page not redirecting -Jquery
- by RMN
I have page1.aspx and page2.aspx in a website
I need to navigate as: Page1-- Page 2(on click of go back button, back to page1)-- page 1
I am using jQuery code to navigate:
var pagename= "page2.aspx";
jQ(location).attr('href', pagename);
I tried using same code in page2 to navigate back to page 1:
var path2 = "page1.aspx";
jq(location).attr('href', path2);
also tried below code and similar few others as well.
document.location.pathname = '../Pages/page1.aspx';
But all it does is, navigate me to show Directory Listing, where it shows all page names under pages folder. Is there anything wrong with the code ? I tried to do it as per levels too, that is ../pages/page1.aspx .