Monday, July 14, 2008

The Wonderful Awful Browser

When a desktop programmer tries to write database applications for the browser, he faces a great many challenges, both technical and cultural. Both sets of challenges appear because the browser and the web were invented for purposes different than our own. On the technical side we must reinvent huge amounts of functionality that we got "for free" with the old desktop systems of Foxpro, Delphi, VB Classic and so on, and on the cultural side we must wade through mountains of irrelevant or downright damaging advice that is aimed at people working on the next version of Facebook or eBay. In this essay we look at as many of these challenges as I can muster.

Why A Desktop Developer Would Move to The Web

When the browser first appeared, it totally lacked the technical powers required to replace desktop applications. Nevertheless, some programmers immediately began to ponder how to move into the world of the browser. The reasons were simple then, are simple now, and have not changed:

  • Far easier deployment -- nothing to install.
  • Worldwide access -- businesses with multiple locations are suddenly much easier to take care of.
  • You could now create a public website and give customers and vendors limited access to certain information.
  • Operating System independence. This is far more of a reality now than we dreamed it might be in the darkest days of Microsoft's Total World Domination, but there were visionaries early on who saw the possibilities.

So there are many programmers, and I am one of them, who continue to work on the same kinds of applications we did before the web existed, but who now deploy these applications in the browser, for the reasons listed above. Here now is our tale of woe and sorrow!

The Cultural Divide

While desktop programmers were scratching their heads and trying to figure out how to fit into this new world, a new generation of programmers was growing up who were perfecting this new platform and developing applications that were undreamed of before. Unfortunately, some of the good advice they dreamed up is either irrelevant or counter-productive to the database programmer who is deploying to the web.

The driving reality for the database application programmer is that her users are not surfing. They are using a dedicated program written for the purposes of the business they work for. Most of what the browser can do is either not necessary or positively in their way, and the browser lacks productivity tools that they took for granted in "the old system." This fact is central to the cultural divide between application programmers and web programmers.

The Infamous Back Button Problem

If I surf over to www.osnews.com and click on an article, when I am finished I click "BACK" once or twice until I'm back to osnews, and then pick another article. But to the application user, who is not surfing but is using a dedicated program, who has clicked "New Patient", typed in the info, and clicked "Save", the back button is a positive menace. It is misleading and dangerous. This has led to who-knows-how-many rants from web programmers telling application programmers, "You don't understand the web, you shouldn't write it that way," in which the desparate application programmer replies only, "but you don't understand, I must have it work this way." The simple fact is that when a user is modifying data in a browser there is no concept of BACK. There may "UNDO" or "REVERT", but once the data is saved it is saved. This is why application programmers resort to trying to hide or disable the button, or why they think they should be able to modify the history (which of course they cannot do because that would be a huge security hole for public sites).

Ajax only Makes The Back Button Worse

Picture a user on the customers screen, who then goes to the menu and picks the vendors screen. They work for five minutes on the vendors screen, and their wonderful snappy AJAX application is fetching search results and navigating from row to row and saving changes. Then they decide they made a mistake and hit [BACK] and wham! they're on the customer screen! It seems that the better the applications become, the worse the [BACK] button becomes. In my own shop we have finally decided to have the login program pop up a new window which does not have the [BACK] button or the address bar. This is considered heresy by web programmers (you don't understand the web! they cry) but of course what is true for them is not true for us, and vice-versa.

This also leads to much work. We must provide for such features as UNDO with no native support in the browser, and worse, with whatever native support the browser does have been intended for something totally different.

Your Application Must Work Without Javascript

This is dead wrong for the application programmer. Application programmers have a power that is totally outside the experience of a pure web programmer: we can dictate system requirements to the customer. This led to many unhappy problems before the web, but with Firefox (and firebug!) we now have a platform that is free and robust. We simply install Firefox (or instruct the IT department to do so) and we have a platform that we know will support our application.

Keyboard Shortcuts

Nothing illustrates the divide between the web and the desktop like keyboard shortcuts.

When Windows 95 swept the office world (but before the web really came into its own), programmers developed a new term for applications that required constant use of the mouse: we called them "mousetraps". The worst kind of mousetrap program requires the user to constantly lift their hand from the keyboard and go to the mouse, then back again. This is fatiguing, confusing, and terribly counter-productive for the end user.

But the real problem is that the browser was born a mousetrap. From the perspective of the desktop programmer, keyboard shortcuts are clearly an afterthought, a "red-headed stepchild" as they say. Native HTML supports only the ACCESSKEY attribute, and recently Firefox was changed so that the default key combination is CTRL+ALT instead of ALT. This small change led me to finally realize that these folks, to put it mildly, have never lived in my world and haven't the slightest clue what my users need. I could expect no help from them on this front.

The solution for the web programmer is to remember my users are not surfing, they are using a dedicated program. Therefore it is the Right Thing for the application programmer to hijack the CTRL-N key and have it mean "New Patient" (or New Customer, New Vendor, etc) instead of opening a new browser window. Moroever, he must kill the CTRL-N so that it does nothing on a page where there is no [New] button. If he does not, then sometimes CTRL-N will create a new patient, and sometimes it will pop up a new window with my.yahoo.com! So the application programmer confidently rewires the "standard" browser keys and has happier customers for his effort.

Technical Problems In the Browser

No Default Focus

Have you ever gone to a website where the first thing you must do is log in, but the user id input does not have focus? That is a sure sign that the page was written by a web programmer with no desktop experience. When you put a database program into the browser, you expect the user to be typing constantly, looking things up, adding information, and so forth. So the application programmer must ensure that his first control always receives focus. Call it petty if you like, but without it your program becomes a mousetrap. Perfection comes by concentrating on these small things that either annoy or please users.

Tabbing Off to Mars

Default browser behavior is to allow the user to TAB through controls in the order they were created. This can be modified by explicitly assigning TABINDEX attributes to the control. However, when you get to the last control, the browser then Tabs you up to the menu, or the address bar, or anywhere else.

In a business application, where the user is not surfing the web, this is wrong. Tabbing out of the content area is equilivant to exiting the application, it throws the user into a context that they do not need and (sad to say) do not understand.

When I first began deploying business apps in the browser I would get calls saying, "it's frozen" or "i'm typing and nothings happening" and other such mysterious claims. Once I observed the users I realized they were "tabbing to Mars", the focus was up on the menu or in the address bar or somewhere else equally irrelevant. So we created the idea of the "Tab Loop", so that when the user hits TAB on the last control it loops back to the first. This completely ended those calls.

The Tower Of Babel

Desktop programmers have a luxury undreamed of by web programmers: they can do all or nearly all of their programming in a single language, like classic Visual Basic, Foxpro, or Delphi (or heck, COBOL or 4GL!). Most of these programmers also know SQL, but it is not seen as a burden to learn it, it is just part of the job.

But when the application programmer moves to the web, he is confronted with at least four systems he must grasp if he is to perform as a master crafstman: (X)HTML, CSS, Javascript, and one or more server languages like Ruby, PHP, Java, etc. These different technologies all have syntaxes and philosophies that are different from each other and from past experience. All I can say is I'm glad I made the effort but I sure as heck hope I never have to make a change that dramatic again.

Let's Not Talk About State

When an application programmer moves to the web, he is confronted with the totally alien concept that he cannot maintain state. This idea has been discussed much in past years, and I suspect it may not be the problem it once was, as most of us have long since gotten past it. I did not want to leave it out completely, but it is way too large an issue to discuss in a paragraph and I doubt anyway that I could add to the wisdom that is already out there.

Lousy Widgets

The HTML SELECT element stinks. Every serious application programmer either downloads a replacement or writes his own replacement. In the old world of the desktop we did not have to do such things.

The final piece of the puzzle in my shop was jQuery. The irony of jQuery is that it seems to me its core function is DOM traversal and manipulation, but its elegant simplicity has drawn creative minds to do things like create really nice widgets for entering time. In my shop we finished off our desktop-in-browser framework by using jQuery extensively, this solved lots of our lousy widgets problem.

Salvation In the New Javascript Frameworks?

I should mention the new frameworks that are emerging for desktop-in-browser, such as extJS and Dojo, not to mention of course the Yahoo! User! Interface! Library!.

In my case I set out on the task of doing browser-based applications four years ago, when none of these technologies existed. So I developed my own simple browser-side framework. jQuery let me round off the rough edges, and now I have no need of a third-party framework. So I am afraid I cannot offer any experience in the use of these others.

But even so, if I could use somebody else's dedicated work and put my efforts elsewhere, that would only be wise, so I continue to watch them closely.

When Do Application Programmers Accept Advice From Web Programmers?

Does all of this mean that we application programmers can learn nothing from web programmers? Of course not, that we be arrogant in the extreme. The answer is that when we enter the world of the public website, we must seek the advice and guidance of the experts in that world. So when I write the public portion of the application, the part that is visible to customers, vendors and other trading partners, I have to follow the standards of common practice: the back button has to work, Javascript should be optional, it should work on IE (arg), and so on and so forth.

Conclusion: When Worlds Collide

The desktop application programmer who decides to deploy business applications in the browser will face two broad challenges: techical and culturual, both of which stem from the origins of the web, which are so different from the origins of the desktop. The technical challenges tend to center around features of the browser that are either lacking or downright counter-productive, and this is made worse because the advice a programmer will receive comes from a culture whose goals are very different from his own. The database programmer who wants to deploy applications in the browser must be prepared to reproduce a lot of features we took for granted in the desktop, and he must also be prepared to filter through the received wisdom and throw out anything that does not meet the needs of his end-users.

Addendum: After reading a few comments on ycombinator.com I should probably stress that the job of getting the application into the browser is completely doable (in fact I've done it myself). The browser can now easily handle the job of desktop applications. The OP lists the hazards I and many other have faced and overcome in getting there. A big part of the conclusion is that it is a lot easier to get done if you recognize why it seems so hard: which is that you may be getting advice from people whose goals are very different form yours.

Next Essay: History Tables

45 comments:

Anonymous said...

Back button must work -> all actions must be reentrant.

The user can always re-post a page (by going back to it0 so hosting the same content must be idempotent (the second time is harmless) or at least meaningful in some way.

But this is a good design principle anyway.

KenDowns said...

Anonymous: you are absolutely absolute.

Anonymous said...

Even popping open a new window without the back button doesn't "solve" your "problem". People who are savvy with their browser know about the Ctrl+Left Arrrow keyboard shortcut to go back in their history, and you can still F5 to refresh a page.

KenDowns said...

Chris: disabling F5 is not a problem. Disabling CTRl+LeftArrow is just as easy, as is disabling the right-click.

But I don't do any of that because savvy users are the least of my problems. I don't know whether to stick a :) or a :( after that.

Anonymous said...

Anonymous: The browsers back button doesnt have to work, in fact when using AJAX I feel there should be a way to disable it. That being said if we were able to disable the back button we should also give the user a way to go back to the previous "page"

SydOracle said...

So who's going to fork out a 'BACK'less Firefox ?

Unknown said...

right click disabling is so easy to get around though... tap space bar and then right click again... javascript doesn't catch it if you time it right...

Anonymous said...

Yes currently you can bypass disabling the back button but if there was a standard way to disable the back functionality that would be extremely helpful.

Unknown said...

I realize this is a year after the last comment, however is still relevant. Considering as a web-based application developer, you can determine which browser the application is viewed in. How about making a request of the Firefox community to develop an application based browser that disables key features.

For example from your home site, I assume you have an employee portal link that opens a new window. What if that link had a flag to open the new window in application mode?

Gregg said...

Good post, though I stumbled on this blog quite late. I can't think of a single end user I have ever spoken with who prefers using the browser over a native application except when they cannot access the application remotely. One of the reasons for the success of HTTP was that it was stateless. And ever since it succeeded we've been adding back state with all the skill we can muster.

Anonymous said...

I almost always want to use my back button, so please, keep it there. I sure am.

Anonymous said...

Thank you for putting into words frustrations that I have found as an application developer contemplating moving to the web.

I have no idea whether these issues have been solved in the two years since the post, but just reading it is making me reconsider the whole concept.

Unknown said...

Hi,To survive in this competitive web driven world and accomplish well Web Design Cochin, you must have special qualities in you. Just focusing in the best services and products will not work for you and make a deep business impact for you. Thanks.......

technical goldsmith said...

norton.com/setup gives the ultimate security to your computer with the help of installing Norton. It is the best security service for your computer given by Norton. This is very easy to install and straight forward to set in your computer and then use. Norton is the sort of antivirus that comes from the extensive virus and its monitoring by the network that creates the promises in real-time protection against the viruses including malware, spyware as well as other security and privacy threats. Norton provides the services to protect your computer against the online and offline threats and provides a defense of security to protect from various other threats.

technical goldsmith said...

Norton is the most used antivirus in the world and the foremost who has a lot of identity, after buying Norton Antivirus. You can create a Norton account by following the instructions by visiting norton.com/setup
official website.

Jaxsonharry said...

Thus, for offering the protection to the users’ device using the McAfee antivirus products, they need to follow the interrelated procedures listed below:
Norton.com/setup
office.com/setup

Dipanjali SIngh said...

There are various subscriptions offered by the antivirus software Norton. Norton is capable of protecting all your handheld devices and computers. The antivirus software programs provide a comprehensive solution for all your needs related to cybersecurity. Moreover, the program offers a quick check for new viruses within every five to fifteen minutes, along with removing them. The innovative technology used in Norton prevents the keyloggers from tracking your online data. The wide range of Norton setup available at norton.com/setup keeps all your data safe, including files and applications.

Dipanjali SIngh said...

mcafee.com/activate – Antivirus Software plays an important role when it comes to preventing unwanted programs from entering your computer system, laptop, or mobile and damaging the crucial online data. McAfee is one such comprehensive antivirus solution that has earned an excellent reputation in a short time. All the antivirus solutions introduced by McAfee are highly trusted by the various organizations and corporations worldwide. To get the details of McAfee antivirus, you can visit mcafee.com/activate.

Dipanjali SIngh said...

The internet-centric world has led to the establishment of several antiviruses’ brands. While, it seems quite useful that we have a wide variety of options to choose from; however, it often leaves us confused. When it comes to top antivirus brands, McAfee is very popular. It offers complete real-time protection against all sorts of threats. If you are intended to install McAfee on your device instantly, then do visit mcafee.com/activate.

officecomsetup said...

Thanks for posting this info. I just want to let you know that I just check out your site and I find it very interesting and informative.
norton.com/setup
mcafee.com/activate
office.com/setup

liza martinee said...


I am very glad after reading your amazing article , thansk for sharing .

mcafee.com/activate

123.hp.com/setup said...

The Hp printer is the finest printer on the market with high-quality home and office facilities for everyday use. You need to unbox them if you purchase a new HP printer, then set it up with a PC or laptop. By visiting URL: 123.hp.com/setup, the user can download and update applications and printer drivers.
123.hp.com/setup
for more info visit 123hp.com/setup

Sophia Williams said...

Thanks for sharing with us such a mind-blowing post. I am really impressed with the information you have provided. Keep up the good work.
Office.com/Setup | Office.com/Setup |
www.mcafee.com/activate | mcafee.com/activate

Eva said...

Thanks for sharing your amazing thoughts. It's a well-explained and informative blog. Click here for more details
HP instant ink login |
Garmin.com/express |

Unknown said...

While working on a computer sometimes one has the need to get the screenshot of the current window to get the screenshot one must know about how to screenshot on HP laptop. If you also want to know about how to take a screenshot then you must follow the link mentioned here.

ella said...

This is a good post. This post gives truly quality information. I really happy found this website eventually.
hbomax.com/tvsignin |
Twitch Activate

News tech new site said...

Pretty! This was an extremely wonderful post. Thanks for providing these details. amazon.com/code

PaypalLogin said...

Great article with an excellent idea!Thank you for such a valuable article. I really appreciate for this great information. And thank you for sharing superb information. know more Paypal loginclick the Link

nonaberry said...

Do check Paypal Login

Technologist said...

Do check https://login-db.info/ollo

https://mailsbug.com/office-365-login/ said...

Thanks for sharing!

Unknown said...

Sometimes, you might need to verify the credentials that have been submitted. This could be your email address, phone number or any other information that the website requires. These codes can be sent to you via email or text message along with your submitted information as you check out. The verification codes can be sent to you via text message, voice call or through
amazon.com/mytv
amazon.com/mytv
amazon.com/redeem
amazon.com/mytv

Unknown said...

The world has enjoyed their Prime membership on larger-screens. www.amazon.com/mytv has made it easy. MyTV App registration is your best option for streaming all of the Amazon Prime shows to your Smart TVs. The above article will solve all your registration, login, verification problems. Now all you have to do is put on your comfy clothes and enjoy the theatre-like experience at home. Log in with your Amazon Prime Login account to access all your favorite web series and original web shows on your smart television.
amazon.com/redeem
primevideo/mytv
amazon.com/code

Unknown said...

www.amazon.com/mytvYou can now watch Amazon Prime Videos on your TV and mobile devices. Amazon Prime members are eligible to receive unlimited access to thousands more Prime Video titles for no additional charge. ToAmazon Prime Video activationAfter signing in, you will receive an Amazon mytv code.Amazon.com/mytvEnter the amazon activation code in your smartphone or laptop
amazon.com/redeem
amazon.com/mytv
amazon.com/redeem
amazon.com/code
amazon.com/mytv

Unknown said...

Users can stream the best online movies and shows via streaming.www.amazon.com/mytvAccount. If a user does not have an account they will need to create one and complete the activation process. All users are advised to read this information regarding how to activate and create an accou
nt on
amazon.com/code
paypal login
amazon.com/mytv
amazon.com/redeem check balance

Unknown said...

Assuming that you are likewise among st those amateurs who don't have the foggiest idea what is email query about yet wish to get to it, this article will help you.
AOL Desktop Gold download
email account lookup
1and1 webmail
Cable one Email login
AOL Mail Login

Unknown said...

We are not Amazon. This website is for information purposes only. For more help, visit
netflix.com/activate
amazon.com/redeem
target.com/checkbalance
target.com/checkbalance
amazon.com/code

Lillian J. Turner said...

Nice Blog. Thanks for sharing with us. Such amazing information.

MyBlogger Club

Guest Posting Site

Best Guest Blogging Site

Guest Blogger

youtubeactivity said...

Youtube.com/activate
The most well known video application on the Internet is YouTube TV; the stage has incalculable online substance producers that a significant part of the time, especially among the most energetic, have replaced standard TV. The application is open on all contraptions, even on Smart TV; the issue comes when you don't have an Internet relationship to watch the accounts. For the current situation, there are different decisions with which to keep us from not consuming our darling substance. We show you the three procedures that we can use expecting we will be without an Internet relationship for a long time.

Anonymous said...

great website.

here is my website blog https://abdholidays.com/blog/auli-tour-package

aryamoney said...

Amazing post
online share market training
online share trading course

카지노 뉴스 정보 사이트 said...

Okay one up for them right now but trust me, that conversation is going 토토사이트

Holiday Recipes said...

Do you keep a really big secret from someone/anyone? Masters Study

Netsviral said...

If you want to get Twitter likes on your Twitter account then you can Buy Twitter likes India and get the more likes on your Twitter accoutn.

Tom Cruise said...

Discover vibrant Coworking Spaces in Bangalore that foster creativity, collaboration, and networking opportunities.