473,761 Members | 10,057 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1455
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.mo on> wrote in message
news:uM******** ********@TK2MSF TNGP14.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.mo on> wrote in message
news:uM******** ********@TK2MSF TNGP14.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****@aspalli ance.com> wrote in message
news:eV******** *****@TK2MSFTNG P14.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.mo on> wrote in message
news:uM******** ********@TK2MSF TNGP14.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

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

Similar topics

11
2342
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
4326
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 from within an inline function. Within the AJAX object: this.xmlhttp = new XMLHttpRequest(); this.response = ''; //to contain the response text OR xml var that = this; //since we cannot reference this within the
0
1845
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
1840
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 developing world of Ajax user interfaces on the browser, IDEAlliance (www.idealliance.org) announced today that its annual XTech Conference will kick off on May 16 with Ajax Developers' Day. XTech 2006 (www.xtech-conference.org), to be held May...
1
16512
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 - microlink pattern tutorial : A microlink is a link that opens up
10
3074
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 another to really see how great something is.) Thanks -- Share The Knowledge. I need all the help I can get and so do you!
2
2262
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 on .net and ajax seem to jump into atlas right away, does anyone know of any that teach ajax itself and then later get into atlas?
1
3415
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 that I see in the comments, but no luck there), but what I already have works GREAT to populate the options in a select box. Now I'm trying to take that same code and get it to write the value to a couple input boxes. Here's a link to my ajax...
11
3050
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 and IE8. There is no issue when the controls are allowed to complete loading. Can you please tell me the best practice that handles this? Thanks.
0
9521
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9333
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10107
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9900
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9765
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
7324
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6599
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5214
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
3442
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.