DCSIMG
DEV,UI - Itai Goldstein

Browse by Tags

All Tags » DEV » UI (RSS)

Improve your ASP.NET Website User Experience: Flush Down your partial Response

There are times when your website page needs to do some heavy work on the server side and you don’t want your user to wait till the work is complete to get a response. In these cases you can use the Response.Write & Response.Flush methods, and here is a short example (on the HTML source side): <% Response . Write( "1st response..." ); %> <% Response . Flush(); %> <% System . Threading . Thread . Sleep( 2000 ); %> <% Response . Write( "2nd response..."...
Posted by itai | 10 comment(s)

Quince - User Experience Design patterns Exploration Tool

There is no need to break your head each time you try to find the best way to design your application user interface in order to provide the best user experience to your application users. You can check out the Infragistics Quince which is a User experience (UX) patterns exploration tool. There are different ways to find the pattern you are looking for: Here is exploring all patterns method: And here is exploring by tag relations method: And the pattern description screen is very intuitive: You can...
Posted by itai | 2 comment(s)