A6.02.3Requiring cross-page memorization is a design flawdesign

Requiring users to remember content across pages is itself a design flaw

Aliases: page-transition memory loss · cross-page memory burden

What it is

A common flow-design mistake: page A shows some information — an ID, a set of values, a checklist — then the flow jumps to page B and asks the user to fill in or verify the same content from memory, with no way to look back. This isn't "the user wasn't careful enough." The flow itself is leaning on a capability people were never good at: holding information in working memory and carrying it across a change of context. The moment a page transition sits between the two, this kind of design offloads recordkeeping work onto the user that the interface should have been doing.

Why it happens

A page transition is a double hit on content that was just memorized. First, the transition itself takes time — even a second or two is enough for the content to start decaying naturally. Second, the new page usually brings new visual content and a new judgment task, and processing that new material draws on the very same resource that was maintaining the old content, which is more damaging than simply waiting would be. The two losses stack, which is why "remember it on the previous page, enter it on the next" is far more fragile in practice than a designer's intuition suggests — even when the content to remember is a short code, error rates climb noticeably the moment a page switch sits in between, compared to showing it on the same screen.

Where it stops holding

Not every instance of carrying information across pages is equally risky. If the transition is very fast, the intervening page introduces almost no new visual judgment, and the content to remember is very short (a two- or three-digit number), the risk is comparatively low. But as soon as any one of three conditions holds — the content is longer, the transition involves a visible load or a substantially new interface, or the user must make another judgment on the new page — error rates rise noticeably. Whether a given flow counts as this kind of flaw isn't just a question of how much there is to remember; it also depends on how much extra processing load the transition itself adds.

Applying it

  • Audit every cross-page or cross-step flow and flag each point where information shown on a previous screen must be re-supplied or re-verified from memory on the next. Treat every flagged point as a flaw by default, unless there's a clear reason to believe the content is trivially short and the transition adds zero delay.
  • Prefer designs that keep the original information visible into the next step: show both on the same screen (avoid the transition), pin the key value in a fixed header or sidebar, provide a "look back" link or summary card after the jump, or let users copy the value instead of retyping it.
  • For forms, have the system carry forward data already collected in an earlier step rather than making the user recall or retype it; where confirmation is genuinely needed, show the original value and the new input side by side rather than splitting them across screens or pages.
  • How to check: count how often users hit "back" or repeatedly switch pages to cross-check information during the flow. A higher count signals that the step is asking more of working memory than users actually have, and it should be redesigned first.

Related

  • Same group: A6.02.1 The number of items working memory can hold at once is limited · A6.02.2 Retention is brief and vulnerable to interference · A6.02.4 The classic capacity estimate is closer to four chunks than the earlier figure of seven · A6.02.5 Without rehearsal, working memory content decays naturally within roughly ten to twenty seconds · A6.02.6 Rehearsal extends retention but draws on the same limited processing resource · A6.02.7 Capacity varies with item complexity, so simple and complex items can't be compared on one number · A6.02.8 Capacity limits and time-based decay are two independent mechanisms, and easing one doesn't substitute for the other
  • Nearby: A6.08 Retrieval cues and context-dependent memory · A9.16 Cognitive offloading and external representation
  • Search terms: cross-page memory load · working memory design flaw · external memory aid

Cards in the same group

Quick Actions

Share

Share this page

ios_share

https://hci.top/en/handbook/A6.02.3