Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Do you know any "book" which covers common UI Scenerios and with some patterns reccomended for asp.Net?

For example covering a scenerio like this:

Scenerio:

  • User entered inputs
  • Clicked SHOW
  • Results displayed on a GridView -with a "DELETE ALL" button below
  • User changed his input etries while the GridView from the previous request is displayed
  • Then clicked DELETE ALL

Question: How can we prevent user to create a confusion which is what he deletes is not what he sees on the screen?

share|improve this question
You can ask on ux.stackexchange.com also – Artem Koshelev Oct 12 '11 at 7:25

closed as not constructive by leppie, Kev Aug 4 '12 at 15:09

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

I know a very good book from Bill Evjen and others, but I'm not sure that it can fit every part of your use case. The book is "ASP.NET 4 in C# and VB". About your question, you can show a popup before deleting, warning user about the delete operation and provide details on the removed entities.

share|improve this answer

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