As JavaScript can be disabled in the browser by the user, I wonder if there is any way of developing an Application which uses Ajax but it doesn\'t use Javascript, so even i
The limitation is the 'j' in Ajax. You need JavaScript to do Ajax - there's no way to update page content without it.
You should always try to design your Ajax applications so that links have a non-ajax fallback wherever possible. So if you have a link which updates a div with new data, when JavaScript is turned off that link will lead to a new page which has that div updated.