vote up 0 vote down star

I did a system test on a new ASP.NET app. I encountered several exceptions when using the BACK button in my browser (IE 7).

I stated in a review-record that the web-app must support the use of a BACK button (or at least handly it gracefully with for example session-time out warnings). The teamlead did not agree with me as he stated that a web-app should not support working with the back-button by default.

Do you agree ?

flag

48% accept rate
4  
Correct me if I'm wrong, but you and the teamlead seem to be saying the same thing with different words? – lc May 5 at 9:09
lc, I made a typo there, corrected it already ;-) – Patrick Peters May 5 at 10:11

5 Answers

vote up 0 vote down

All apps should support the back button. Everyone uses it and you cannot tell your users to change their browsing habits just for your webpage. Yes it's petty, but so are users. Like me, for example. No joke, I will not use a web page/app that does not support the back button. It just frustrates me the first time it happens and I look for the next Google result.

link|flag
vote up 0 vote down

I think that all web apps should support the back button. If it breaks your app and you can't code for it, then at least put some javascript on the navigate away event to let the user know that the back button isn't supported and using it might cause loss of work.

It's frustrating when you click a back button and get to a non working page and you end up losing something you were working on.

Support it or at least make sure a user knows that they can't use it, and remind them when they click it out of habit.

link|flag
vote up 0 vote down

You should definitly support the back button in a web app. Users do really assume that this features is supported.

You can read about PRG on this blogpost http://blog.andreloker.de/post/2008/06/Post-Redirect-Get.aspx or on wikipedia http://en.wikipedia.org/wiki/Post/Redirect/Get

link|flag
vote up 1 vote down

My personal opinion is that any website that doesn't handle the back button reasonably gracefully if not entirely correctly is taking a huge hit in usability terms. People understand the back button. Moreso, they like it.

Pages can be slow to load. I don't want to have to fully load a page each time I open an item on a list just to go back to that list.

With POST+REDIRECT+GET and other idioms you can get nice behaviour with the back button and that's what you should strive for.

link|flag
Can you give me some techniques (or better: quick wins) to get this done in ASP.NET 3.5? – Patrick Peters May 5 at 10:51
vote up 2 vote down

Yes, yes they should.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.