Home > Article > Web Front-end > Page jump problem_html/css_WEB-ITnose
Problem description: I am building a book recommendation system. I want to click on a book title to jump to the detailed introduction page of the book on the page that displays new books. What method should I use to achieve this?
request object? I'm a newbie, it's my first time making a system, please help me!
1. Implementation of javascript
window.location.href='hello.html';
2. .net implementation
Response.Redirect("hello.html",false);
Server.Transfer("hello.html",false);
Response.Write("< script language='javascript'>window.open("hello.html");");
I have no idea! ! !
I want to make a link under the book. After clicking the link, it will jump to the detailed information introduction page of the book, and output other information about the book in the database on the introduction page
http://blog.sina.com.cn/s/articlelist_5567393070_0_1.html See it useful
I want to make a link under the book. After clicking the link, jump to the details of the book Information introduction page, in which other information about the book in the database is output
It is more convenient to pass the URL value. Pass the book id and then query the detailed information through the passed id
Just pass the URL value