473,395 Members | 1,556 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,395 software developers and data experts.

AJAX.net vs. Atlas

I'm going to be diving into ASP.net 2.0 on a small project. I'd also like to
use it as an excuse to start playing with some AJAX techniques.

So, that leads to the obvious question: AJAX.net vs. Atlas?

Anyone have any opinions on that?

It looks like Atlas is still considered 'beta' so perhaps that's one strike
against it.

This mini-Q&A seems to ignore the fact that AJAX isn't necessarily a
'graceful degredation' concept:

http://weblogs.asp.net/despos/archive/2005/11/09.aspx

Granted, I'm not sure if AJAX.net is any different in terms of it's scope of
support (though, in fairness, Live.com seems to work great in Firefox)

On the other hand, Atlas is a free framework, and ajax.net, while free,
appearst to be moving into the commercial realm with the pro version.

I don't want to go all nuts with AJAX. I'm still a big fan of 'progressive
enhancement' and accessibility issues and likely won't be using AJAX too
much for the front-end (if at all). I'll mainly be using it on the admin
side using things like drag-n-drop to handle record sorting and the like.

-Darrel
Mar 27 '06 #1
8 2490
Atlas is more than just AJAX.NET. That said, I far prefer AJAX.NET because
it's lightweight and does what I want/need.

Atlas isn't only an asychronous library, but a complete JavaScript framework
ala Prototype (the .NET team says they go far beyond prototype, but I
haven't explored either enough to say for sure.

Karl

--
http://www.openmymind.net/
http://www.fuelindustries.com/
"darrel" <no*****@nowhere.com> wrote in message
news:ux****************@TK2MSFTNGP12.phx.gbl...
I'm going to be diving into ASP.net 2.0 on a small project. I'd also like
to use it as an excuse to start playing with some AJAX techniques.

So, that leads to the obvious question: AJAX.net vs. Atlas?

Anyone have any opinions on that?

It looks like Atlas is still considered 'beta' so perhaps that's one
strike against it.

This mini-Q&A seems to ignore the fact that AJAX isn't necessarily a
'graceful degredation' concept:

http://weblogs.asp.net/despos/archive/2005/11/09.aspx

Granted, I'm not sure if AJAX.net is any different in terms of it's scope
of support (though, in fairness, Live.com seems to work great in Firefox)

On the other hand, Atlas is a free framework, and ajax.net, while free,
appearst to be moving into the commercial realm with the pro version.

I don't want to go all nuts with AJAX. I'm still a big fan of 'progressive
enhancement' and accessibility issues and likely won't be using AJAX too
much for the front-end (if at all). I'll mainly be using it on the admin
side using things like drag-n-drop to handle record sorting and the like.

-Darrel

Mar 27 '06 #2
Atlas has a golive license now so it would be appropriate for ASP.NET 2.0
sites.
The only issue I have with AJAX.NET is that it breaks the MS page model by
using external handlers that need to be configured in web.config, thereby
breaking the stateful page in the callback (e.g., no access to page state).

Two alternatives that are not only much more lightweight than AJAX.NET but
also do not require external handlers are Anthem.NET and MagicAjax. Both are
available on sourceforge.net
Peter

--
Co-founder, Eggheadcafe.com developer portal:
http://www.eggheadcafe.com
UnBlog:
http://petesbloggerama.blogspot.com


"darrel" wrote:
I'm going to be diving into ASP.net 2.0 on a small project. I'd also like to
use it as an excuse to start playing with some AJAX techniques.

So, that leads to the obvious question: AJAX.net vs. Atlas?

Anyone have any opinions on that?

It looks like Atlas is still considered 'beta' so perhaps that's one strike
against it.

This mini-Q&A seems to ignore the fact that AJAX isn't necessarily a
'graceful degredation' concept:

http://weblogs.asp.net/despos/archive/2005/11/09.aspx

Granted, I'm not sure if AJAX.net is any different in terms of it's scope of
support (though, in fairness, Live.com seems to work great in Firefox)

On the other hand, Atlas is a free framework, and ajax.net, while free,
appearst to be moving into the commercial realm with the pro version.

I don't want to go all nuts with AJAX. I'm still a big fan of 'progressive
enhancement' and accessibility issues and likely won't be using AJAX too
much for the front-end (if at all). I'll mainly be using it on the admin
side using things like drag-n-drop to handle record sorting and the like.

-Darrel

Mar 27 '06 #3
> I'm going to be diving into ASP.net 2.0 on a small project. I'd also like
to use it as an excuse to start playing with some AJAX techniques.

So, that leads to the obvious question: AJAX.net vs. Atlas?

Anyone have any opinions on that?


Atlas allows you to use AJAX without using Javascript ;) Take a look at
March CTP. You put updatePanel with gridView and the gridView is now with
full AJAX support. And your page on the server works as if there where
normal postbacks so I believe it's pretty easy to use Atlas. Is it light or
not... will your code be lighter and more stable ?
Jarod

Mar 27 '06 #4
> Atlas allows you to use AJAX without using Javascript ;) Take a look at
March CTP. You put updatePanel with gridView and the gridView is now with
full AJAX support. And your page on the server works as if there where
normal postbacks so I believe it's pretty easy to use Atlas. Is it light
or not... will your code be lighter and more stable ?


Hmm...does it REQUIRE that you use the built in controls? Ie, do I have to
use a gridView if I want to sort items with AJAX or can I apply it to my own
control's output?

-Darrel
Mar 27 '06 #5
If you're not afraid of a little JavaScript then I think you should start
with the basic free AJAX functionality that comes with ASP.NET 2.0. For
simple things like you're talking about it's a nice, reasonably simple
solution. Here are the details:
http://SteveOrr.net/articles/Ajax.aspx

As Atlas nears final release it will be more worthwhile to learn how it
works, but right now its kind of a moving target so you might not want to
spend time learning a technology that's prone to change so quickly & soon.

--
I hope this helps,
Steve C. Orr, MCSD, MVP
http://SteveOrr.net

"darrel" <no*****@nowhere.com> wrote in message
news:ux****************@TK2MSFTNGP12.phx.gbl...
I'm going to be diving into ASP.net 2.0 on a small project. I'd also like
to use it as an excuse to start playing with some AJAX techniques.

So, that leads to the obvious question: AJAX.net vs. Atlas?

Anyone have any opinions on that?

It looks like Atlas is still considered 'beta' so perhaps that's one
strike against it.

This mini-Q&A seems to ignore the fact that AJAX isn't necessarily a
'graceful degredation' concept:

http://weblogs.asp.net/despos/archive/2005/11/09.aspx

Granted, I'm not sure if AJAX.net is any different in terms of it's scope
of support (though, in fairness, Live.com seems to work great in Firefox)

On the other hand, Atlas is a free framework, and ajax.net, while free,
appearst to be moving into the commercial realm with the pro version.

I don't want to go all nuts with AJAX. I'm still a big fan of 'progressive
enhancement' and accessibility issues and likely won't be using AJAX too
much for the front-end (if at all). I'll mainly be using it on the admin
side using things like drag-n-drop to handle record sorting and the like.

-Darrel

Mar 27 '06 #6
Thus wrote darrel,
Atlas allows you to use AJAX without using Javascript ;) Take a look
at March CTP. You put updatePanel with gridView and the gridView is
now with full AJAX support. And your page on the server works as if
there where normal postbacks so I believe it's pretty easy to use
Atlas. Is it light or not... will your code be lighter and more
stable ?

Hmm...does it REQUIRE that you use the built in controls? Ie, do I
have to use a gridView if I want to sort items with AJAX or can I
apply it to my own control's output?


I'd expect that extender controls would work with all kinds of controls,
assuming the extended capablity isn't dependent on some control specific
feature, interface, etc.

Cheers,
--
Joerg Jooss
ne********@joergjooss.de
Mar 27 '06 #7
I think that Anthem is better, and it's open source while Ajax.net not. I
tried the latter before switch to Anthem, and I think Anthem is a lot
better.
"darrel" <no*****@nowhere.com> wrote in message
news:ux****************@TK2MSFTNGP12.phx.gbl...
I'm going to be diving into ASP.net 2.0 on a small project. I'd also like
to use it as an excuse to start playing with some AJAX techniques.

So, that leads to the obvious question: AJAX.net vs. Atlas?

Anyone have any opinions on that?

It looks like Atlas is still considered 'beta' so perhaps that's one
strike against it.

This mini-Q&A seems to ignore the fact that AJAX isn't necessarily a
'graceful degredation' concept:

http://weblogs.asp.net/despos/archive/2005/11/09.aspx

Granted, I'm not sure if AJAX.net is any different in terms of it's scope
of support (though, in fairness, Live.com seems to work great in Firefox)

On the other hand, Atlas is a free framework, and ajax.net, while free,
appearst to be moving into the commercial realm with the pro version.

I don't want to go all nuts with AJAX. I'm still a big fan of 'progressive
enhancement' and accessibility issues and likely won't be using AJAX too
much for the front-end (if at all). I'll mainly be using it on the admin
side using things like drag-n-drop to handle record sorting and the like.

-Darrel

Mar 28 '06 #8
>I think that Anthem is better, and it's open source while Ajax.net not. I
tried the latter before switch to Anthem, and I think Anthem is a lot
better.

Thanks, Trapulo. I'm always a fan of Open Source in the .net world.

-Darrel
Mar 28 '06 #9

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

Similar topics

10
by: Showjumper | last post by:
There are 3 or so different AJAX libs that are out there available for use - Anthem.NET AJAX.Net Atlas Atlas as i undserstand it is for ASP.NET 2.0. What about about the other 2? Any comments,...
9
by: darrel | last post by:
Last week I asked about ASP.net 2.0 AJAX frameworks and there appears to be several to choose from. I haven't used ASP.net 2.0 yet, but from doing a bit of reading, it appears that ASP.net 2.0...
7
by: Thirsty Traveler | last post by:
Peter Bromberg has an interesting article eggheadcafe discussing AJAX libraries. He prefers ANTHEM.NET over AJAX.NET because it doesn't break the stateful page model. Our developers are currently...
13
by: Sharon | last post by:
Hi all, I was wondering if anyone had experience using ajax with asp.net controls. What i'm looking for, are ways to implement and possible problems. A way to implement could be rendering the...
5
by: geekboy0001 | last post by:
Just trying to get some opinions out there... There are tons of Ajax libraries out there... Ajax.NET Professional, ComfortASP.NET, ZumiPage, etc. etc... Microsoft has their own too, Atlas. I've...
9
by: RBM007 | last post by:
Hello, I have created some pages in the (old) Atlas pages and migrated to AJAX version. After the update I noticed that any page containing ASP.NET AJAX won't compile anymore. Even if the same...
2
by: Rahul | last post by:
I am trying the following thing in AJAX <atlas:ScriptManager ID="scriptmanager1" runat="Server" EnablePartialRendering="true" /> <asp:DropDownList ID="cmbBranchname" cssclass="Combostyle"...
4
by: Grant Merwitz | last post by:
Hi I am trying to implement the Microsoft Ajax.NET extensions to perform a lookup on a key press of a text box. What this will do is once a user enters a letter into the textbox, this will...
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...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
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
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
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
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...
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
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
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...

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.