Archives by Tag 'Javascript'

ASP.NET MVC POST HTML rich text data to the server incompletely.

By admin - Last updated: Sunday, July 5, 2009

Sometimes, when using javascript or JQuery to perform manual POST rich html content to the server,
the server could misunderstood the parameters and the data passing in.
For example, if you want to POST parameterised data.
title=mytitle&content=helloworld=firsttest
As you might notice helloworld=firsttest is actually user data, but by just posting the data above,
the server could confuse with the parameter [...]

Google Gears – A Client Programming Framework?

By admin - Last updated: Tuesday, October 7, 2008

Google Gears beta is an extension to the browsers, it provides extra functionality for javascript applications to cache resources aka localserver, relational database (SQLite) and a worker thread pool.
localserver
Instead of remote server, this feature allows resources like html, javascript or images cached locally on desktop’s hard disk. This makes offline web application possible. [...]