I want to use "Ajax" to create my web for hobby.
But i don't know whether "Ajax" is mature...
And what about with php? Someone have experience on it?
.... 11 2258
On 2005-09-16, Yarco <ya*****@gmail.com> wrote: I want to use "Ajax" to create my web for hobby. But i don't know whether "Ajax" is mature... And what about with php? Someone have experience on it?
Might want to investigate your requirements first.
What do you really want to do?
Why do you think AJAX will help you achieve that goal?
Why do you think PHP will help you achieve that goal?
--
Met vriendelijke groeten,
Tim Van Wassenhove <http://timvw.madoka.be>
I want to know whether "Ajax" do have the ability to instead the normal
web programming.
Yarco wrote: I want to know whether "Ajax" do have the ability to instead the normal web programming.
Well, AJAX only gives you a clientsolution.
Like replacing pieces on a document with fresh material that is delivered
without a full page rebuild.
If you need databasequeries and the like, you still need to make the scripts
on the server.
I have looked at AJAX, but I don't see the point really. :-/
(I guess I am an oldfashioned guy.)
Maybe when you have a very heavyly filled page it makes sense to replace
just a part of it.
Some people claimed AJAX could prevent others from 'stealing' your content,
but that is not true. (It only makes it a little more work.)
just my 2 cents...
Don't flame me AJAX-fan. :-)
Regards,
Erwin Moller
Yarco wrote: I want to use "Ajax" to create my web for hobby. But i don't know whether "Ajax" is mature... And what about with php? Someone have experience on it?
"Ajax" is just a new term for something that has been around since the
late 1990's. Therefore, I'd have to say that it would be considered
"mature."
--
Justin Koivisto, ZCE - ju****@koivi.com http://koivi.com
Justin Koivisto wrote: "Ajax" is just a new term for something that has been around since the late 1990's. Therefore, I'd have to say that it would be considered "mature."
As we know with people, age often does not imply maturity :-)
On 2005-09-16, Yarco <ya*****@gmail.com> wrote: I want to know whether "Ajax" do have the ability to instead the normal web programming.
Could you reformulate that? Because i really don't understand what you
are trying to say.. "the ability to instead the normal web programming"
--
Met vriendelijke groeten,
Tim Van Wassenhove <http://timvw.madoka.be>
Well. For example:
I create several views: view1, view2, view3.
Using php with smarty, i select view1. Smarty will compile it into php,
and then into html. HTML will be send to the client.
But in Ajax:
I create several views: view1, view2, view3.
When i select view1. The view and the data will be download into client
end. And then compile them into html.(I don't know how to do it, but i
think it can be realized.)
The data and the view are distinguished. It is very clairly what the
client want to get.
On 2005-09-18, Yarco <ya*****@gmail.com> wrote: Well. For example: I create several views: view1, view2, view3. Using php with smarty, i select view1. Smarty will compile it into php, and then into html. HTML will be send to the client. But in Ajax: I create several views: view1, view2, view3. When i select view1. The view and the data will be download into client end. And then compile them into html.(I don't know how to do it, but i think it can be realized.)
If i understand it well, the only advantage you mention is that with
ajax you don't need to "load" the page again to change the presentation.
I can imagine uses for ajax, for example a chatbox, where you want to
update the messages.. without completely reloading the page..
The data and the view are distinguished. It is very clairly what the client want to get.
For this functionality, you could generate x(ht)ml.. With a bit of XSL
the user can get the data in the representation *he* wants.
--
Met vriendelijke groeten,
Tim Van Wassenhove <http://timvw.madoka.be>
Erwin Moller <si******************************************@spam yourself.com> writes: Yarco wrote:
I want to know whether "Ajax" do have the ability to instead the normal web programming. Well, AJAX only gives you a clientsolution. Like replacing pieces on a document with fresh material that is delivered without a full page rebuild. If you need databasequeries and the like, you still need to make the scripts on the server. I have looked at AJAX, but I don't see the point really. :-/ (I guess I am an oldfashioned guy.)
I many traditional web applications I don't see much point in
trying to push AJAX to them. But there are applications that
can be built in more user friendly way using AJAX.
The examples that I can think of are some web based user
interfaces. You can nicely get live updated from certain
inforamtion form the device being controller, and update
them on the fly to the visible web page without disturbing
other things done on the web page at the same time.
And those updates can be performed on mahy web brosers withotu seeing
that "flashing" that happens often when you reload the page.
AJAX technologies have already applied in such nice services
like Google Mail (www.gmail.com) and Google Maps (maps.google.com).
Their user interface made in AJAX way is much more "slick" than
what coudl be done with traditional web interface.
I have used several web base map services and e-mail services
built using traditional web technioques, and their user
interface is not that good as in those "state of the art"
AJAX applications.
There are places where AJAX can help to make better user interface.
Lots of potential to help situations which are not well done
with traditional web.
But AJAX is not for everything and should
not be pushed for every application because some developers think
that it is "cool". Ajax is not perferct and has it's problems.
I will expect to see AJAX to be musused in very many situations
in the applications where is not really needed and does not
make things any better (easily worse if not used properly!).
This has happened already for other new web techniques,
and I expect tha history repeats itself.
Ajax Mistakes http://sourcelabs.com/ajb/archives/2..._mistakes.html
"Ajax is an awesome technology that is driving a new generation of web
apps, from maps.google.com to colr.org to backpackit.com. But Ajax is
also a dangerous technology for web developers, its power introduces a
huge amount of UI problems as well as server side state problems and
server load problems."
Maybe when you have a very heavyly filled page it makes sense to replace just a part of it.
There are applications where this makes sense.
Using AJAX is not the only way to replace just part of a web page.
Some people claimed AJAX could prevent others from 'stealing' your content, but that is not true. (It only makes it a little more work.)
I don't see how AJAX could prevent other people from 'stealing' your
content. Using AJAX might make stealing a little bit harder on
some cases for some users when technology is new, but I think
that the effect of it as protection will soon drop
(similar protection level like with other Javascript trics
that are not really secure). Using AJAX as the only way to
get to the content might also stop some legitime users from
getting to you content (AJAX does not work on every
browser in the world and Javascript needed in AJAX is disabled
by the user in the web browser for security reasons).
--
Tomi Engdahl ( http://www.iki.fi/then/)
Take a look at my electronics web links and documents at http://www.epanorama.net/ This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: bobzimuta |
last post by:
I'm creating a simple AJAX library. It's an object that will return an
array containing the response text or xml. I'm trying to find a way to
assign the response as a property of the object, but...
|
by: melledge |
last post by:
Ajax Developers' Day added to XTech 2006 agenda
XTech 2006 - 17-19 May - Hotel Grand Krasnopolsky - Amsterdam, The
Netherlands
|
by: melledge |
last post by:
Ajax Developers' Day to Kick Off XTech 2006 Conference
Industry experts offer insight into next generation of the Web
ALEXANDRIA, VIRGINIA, USA - April 25, 2006 - In response to the
rapidly...
|
by: www.web20developers.com |
last post by:
http://www.web20developers.com
http://www.web20developers.com/index.php?option=com_content&task=view...
Ajallerix : AJAX, simple, fast Web image gallery demo ; at Novell
AJAX -...
|
by: =?Utf-8?B?WWFua2VlIEltcGVyaWFsaXN0IERvZw==?= |
last post by:
controlsPlease could some of you here post some of your live examples of AJAX
(esp drag panels, collapsable panels, and popup menu.)
(It's one thing to talk about how great something is, but it's...
|
by: soni2926 |
last post by:
hi,
does anyone know of any good books on ajax and asp.net, one that
teaches ajax itself before jumping in atlas? I wanted to get an
understanding of ajax and how to use it, most books i've seen...
|
by: shaunwo |
last post by:
I'm an AJAX / DOM Novice (at best) and trying to figure out how to write the value to a couple input fields. I don't remember exactly where I got the ajax.js file I'm using from (went to the website...
|
by: =?Utf-8?B?R2VyaGFyZA==?= |
last post by:
I have run into a situation that if a page/tab that uses the Ajax toolkit
(using .net version 3.5) is closed before the Ajax enable controls complete
loading, then IE locks up. Does it in both IE7...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: linyimin |
last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
|
by: erikbower65 |
last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA:
1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
|
by: Taofi |
last post by:
I try to insert a new record but the error message says the number of query names and destination fields are not the same
This are my field names
ID, Budgeted, Actual, Status and Differences
...
|
by: Rina0 |
last post by:
I am looking for a Python code to find the longest common subsequence of two strings. I found this blog post that describes the length of longest common subsequence problem and provides a solution in...
|
by: DJRhino |
last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer)
If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _
310030356 Or 310030359 Or 310030362 Or...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: lllomh |
last post by:
How does React native implement an English player?
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
| |