473,396 Members | 1,968 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

AJAX + ASP.NET

The use of AJAX as an approach seems to be taking off.

Is this correct, or have I just read the hype?

Is Ajax a proven approach that one should look at for building high-load
websites?

If yes, can anyone recommend good reading material?

I see that there is a Wrox Professional Ajax book, but I've not seen any
reviews of this.

Thanks in advance

Griff
Feb 10 '06 #1
12 1433
Hi,

have also a look at http://atlas.asp.net

Atlas is MS's implementation of AJAX, as an Framework on top of ASP.NET 2.0.

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"Griff" <ho*****@the.moon> wrote in message
news:uM****************@TK2MSFTNGP14.phx.gbl...
The use of AJAX as an approach seems to be taking off.

Is this correct, or have I just read the hype?

Is Ajax a proven approach that one should look at for building high-load
websites?

If yes, can anyone recommend good reading material?

I see that there is a Wrox Professional Ajax book, but I've not seen any
reviews of this.

Thanks in advance

Griff

Feb 10 '06 #2
Well, i think it may be a bit better for a high load site because you
will cut down on the data sending out since you won't be sending out
the entire page, just the data returned by whatever ajax method.

Also you may want to consider who the audience is. AJAX is dependant
on javascript, and not everyone has it enabled (but most due).

However, I have seen some people who find that AJAX increased the
development time due to lack of integrated debugging and such. I have
not used AJAX in any of the web projects that I have done yet, so I
can't give you personal views of AJAX.

Feb 10 '06 #3
You might also want to take a look at:
http://msdn.microsoft.com/library/de...SpicedAjax.asp

which covers one of the more popular .NET implementations.

KArl

--
http://www.openmymind.net/
http://www.fuelindustries.com/
"Griff" <ho*****@the.moon> wrote in message
news:uM****************@TK2MSFTNGP14.phx.gbl...
The use of AJAX as an approach seems to be taking off.

Is this correct, or have I just read the hype?

Is Ajax a proven approach that one should look at for building high-load
websites?

If yes, can anyone recommend good reading material?

I see that there is a Wrox Professional Ajax book, but I've not seen any
reviews of this.

Thanks in advance

Griff

Feb 10 '06 #4
hi,

it seems to be very powerful, but is AJAX only available on ASP.NET 2.0 or
it can be used on ASP.NET 1.1 too?

thanks

ThunderMusic

"Teemu Keiski" <jo****@aspalliance.com> wrote in message
news:eV*************@TK2MSFTNGP14.phx.gbl...
Hi,

have also a look at http://atlas.asp.net

Atlas is MS's implementation of AJAX, as an Framework on top of ASP.NET
2.0.

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"Griff" <ho*****@the.moon> wrote in message
news:uM****************@TK2MSFTNGP14.phx.gbl...
The use of AJAX as an approach seems to be taking off.

Is this correct, or have I just read the hype?

Is Ajax a proven approach that one should look at for building high-load
websites?

If yes, can anyone recommend good reading material?

I see that there is a Wrox Professional Ajax book, but I've not seen any
reviews of this.

Thanks in advance

Griff


Feb 10 '06 #5
Hi,

Darren Kopp wrote:
Well, i think it may be a bit better for a high load site because you
will cut down on the data sending out since you won't be sending out
the entire page, just the data returned by whatever ajax method.

Also you may want to consider who the audience is. AJAX is dependant
on javascript, and not everyone has it enabled (but most due).

However, I have seen some people who find that AJAX increased the
development time due to lack of integrated debugging and such. I have
not used AJAX in any of the web projects that I have done yet, so I
can't give you personal views of AJAX.


I find Ajax surprisingly easy to debug. If you enable script debugging
in IE, you can debug the client-side code and the server-side code in
the same instance of Visual Studio (at least as long as everything runs
in localhost).

If you need your web app to run in Firefox too, you'll need Venkman to
debug the client-side, but it's very easy to set-up.

HTH,
Laurent
--
Laurent Bugnion, GalaSoft
Software engineering: http://www.galasoft-LB.ch
Private/Malaysia: http://mypage.bluewin.ch/lbugnion
Support children in Calcutta: http://www.calcutta-espoir.ch
Feb 10 '06 #6
> it seems to be very powerful, but is AJAX only available on ASP.NET 2.0 or
it can be used on ASP.NET 1.1 too?


AJAX is nothing new, infact it could have been deployed since javascript got
xml support (along time ago), it is simply a collection of technologies (it
means Asynchronous Javascript And Xml)

Basically a client continually polls a web service for information on
demand, (this is done with event tracking in java script). The service
returns XML formatted information inresponse to the poll, this is picked up
by the javascript client and used to dynamically re-render the page.

Nothing major, however there are tools kits and tutorials out there to show
its use.

All you need is the javascript to encorporate into the client pages (its all
done and on the net), a webservice that can respond to these calls and you
are done.

HTH
kind Regards
Taz


Feb 10 '06 #7
Tarun

Thanks for the summary - very useful.

I guess before I invest time investigating this I really would like an idea
of when and (more importantly) when not to use it. What scenarios would one
envisage?

I understand that this prevents having to re-post the page (effectively just
get fragments as and when they become available) and this can improve the
users' experience. However, what about the "server's experience"? Would a
server have to perform more work overall or less? If more, then is this
truly scalable?

Thanks if you can provide further insight.

Griff
Feb 13 '06 #8
That question could go so deep. It would all depend on how you
architect your system. I am a bit fuzzy from the AJAX perspective, but
if you want to have a highly available server, I would consider a
caching scheme.

Depending on how you set it up, you can conserve large amounts of
system resources by not having to query a database, or a webservice,
etc. There are several aspects of caching as well to consider, such as
memory considerations.

A combination of AJAX and caching would work very well, however, i do
not know how to guide you in it's implementation.

Recomended Links:
http://msdn.microsoft.com/practices/...t/default.aspx
http://msdn.microsoft.com/practices/...achingarch.asp

HTH,
Darren Kopp
http://blog.secudocs.com/

Feb 15 '06 #9
There are many ASP.NET + AJAX frameworks, like for example FastPage
(http://fastpage.more.at) ...

This integrates very easy ... you need only to change youк class Page
to FastPage and your Page stay AJAX style ... I mean PostBacks now not
refresh page but going to server, gets changes in page, and update it,
everything automatic ... really amazing thing!!!

And you can use more PostBack ... you can have no fear upon PostBacks
.... in DataGrids its very comfortable ... see samples and try demo :)

Feb 23 '06 #10
> The use of AJAX as an approach seems to be taking off.

Is this correct, or have I just read the hype?

Is Ajax a proven approach that one should look at for building high-load
websites?

If yes, can anyone recommend good reading material?

I see that there is a Wrox Professional Ajax book, but I've not seen any
reviews of this.

Thanks in advance

Griff


If you are looking for an overview of frameworks the combine AJAX and
ASP.NET programming, please look at:
http://www.daniel-zeiss.de/AJAXComparison/Results.htm

All the frameworks listed here have one unique AJAX feature: They allow
updating page content without programming AJAX directly. Direct AJAX
programming would mean dealing with client scripts, DHTML, method
proxies, client side rendering and so on...

Feb 25 '06 #11
Try http://www.ajaxtoday.com

"Griff" wrote:
The use of AJAX as an approach seems to be taking off.

Is this correct, or have I just read the hype?

Is Ajax a proven approach that one should look at for building high-load
websites?

If yes, can anyone recommend good reading material?

I see that there is a Wrox Professional Ajax book, but I've not seen any
reviews of this.

Thanks in advance

Griff

Apr 3 '06 #12
Read this article
http://www.ajaxtoday.com/ArticleDeta...5/Default.aspx It
doesnt use any libraries and doesnt matter you use ASP.Net 1.1 or 2.0

- Rafiq

"ThunderMusic" wrote:
hi,

it seems to be very powerful, but is AJAX only available on ASP.NET 2.0 or
it can be used on ASP.NET 1.1 too?

thanks

ThunderMusic

"Teemu Keiski" <jo****@aspalliance.com> wrote in message
news:eV*************@TK2MSFTNGP14.phx.gbl...
Hi,

have also a look at http://atlas.asp.net

Atlas is MS's implementation of AJAX, as an Framework on top of ASP.NET
2.0.

--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
http://blogs.aspadvice.com/joteke

"Griff" <ho*****@the.moon> wrote in message
news:uM****************@TK2MSFTNGP14.phx.gbl...
The use of AJAX as an approach seems to be taking off.

Is this correct, or have I just read the hype?

Is Ajax a proven approach that one should look at for building high-load
websites?

If yes, can anyone recommend good reading material?

I see that there is a Wrox Professional Ajax book, but I've not seen any
reviews of this.

Thanks in advance

Griff



May 6 '06 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

11
by: Yarco | last post by:
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? ....
4
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...
0
by: melledge | last post by:
Ajax Developers' Day added to XTech 2006 agenda XTech 2006 - 17-19 May - Hotel Grand Krasnopolsky - Amsterdam, The Netherlands
0
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...
1
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 -...
10
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...
2
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...
1
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...
11
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.