Hi there,
Since this is not directly related to my book, please post questions like these in a general ASP.NET category:
http://p2p.wrox.com/asp-net-4-539/
That said: yes, this is a common issue. The browser's back button takes you to the previous page; you can accomplish this client side using history.go(-1) which you can also trigger from the server side by adding that code in a script block on a literal control which gets rendered after a postback.
Other solutions:
1. "Forward" to the previous page. In other words, render a new page that mimics the previous state, but setting up stuff like filters, current page etc. This requires some coding as you need to keep track of state.
2. Look into History controls such as this one:
http://www.asp.net/web-forms/videos/...istory-control
Cheers,
Imar