what does “one-document-per-URL paradigm” mean with reference to web development..
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That if you go to a URI, you get a document, and you always get the same document.
The best way to explain it is to describe how to break it – which is usually achieved with frames or Ajax.
Frames gives you a document containing a frameset. You click a link and the page loaded in one of the frames changes. You are viewing “About” instead of “Home” but the URL in the address is unchanged so if you copy the link or bookmark it, you end up at “Home” instead of “About”
You get the same effect when Ajax is overused.