Home  >  Article  >  Web Front-end  >  Page jump problem_html/css_WEB-ITnose

Page jump problem_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:44:451123browse

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!


Reply to discussion (solution)

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


Implementation method:
(1) When you click on the link of the book, the id of the book in the database will be transmitted To the backend
(2) The backend queries the database through the ID you passed and retrieves all the information about the book
(3) Returns the query results to the front end
(4) The front-end interface obtains data And display it

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

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn