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

ATlas and Asp.net Client callback

Hi Guys,
As we wall know Atlas is a fairly new feature everyone is talking
about (atleast at my school). Even though the idea of Ajax has been used in
the past i was wondeing if anyone could explain a few things to me.
Comparing the performance of both asp.net client call backs and Atlas which
is faster? Do they necessarily do the same things? Are there things Atlas
can do that client callbacks can't? Secondly, even though there is a Atlas
library which makes coding easier, does that make it necessarily better for
developement?

Thanx

--Papanii
Apr 13 '06 #1
5 1379
Atlas uses the client call backs built into ASP.net 2.0. The idea of it is
to automate the process and allow you to use server side markup and code to
generate the client side stuff, in much the same way as current ASP.net
generates various cleint side scripts to deal with things like auto post back
and validation. Currently it's all a bit moot as Atlas is at such an early
stage it is not much practical use at all. I would say Atals will make for
better development, after all would you code your own validation routing when
using an ASP.net validation control will work?

"Papanii Okai" wrote:
Hi Guys,
As we wall know Atlas is a fairly new feature everyone is talking
about (atleast at my school). Even though the idea of Ajax has been used in
the past i was wondeing if anyone could explain a few things to me.
Comparing the performance of both asp.net client call backs and Atlas which
is faster? Do they necessarily do the same things? Are there things Atlas
can do that client callbacks can't? Secondly, even though there is a Atlas
library which makes coding easier, does that make it necessarily better for
developement?

Thanx

--Papanii

Apr 13 '06 #2
Hi Papanii,

Normal ASP posts your entire page back on a event. This generates pretty
much traffic. With atlas you can only post back a portion of your page.
The benefits of this is that it generates less traffic, but also greatly
improves the user experiece. Because only a portion is updated your screen
flickers less and so your web application looks more like a Windows
application.

For more information and a library to use it go to: http://atlas.asp.net/

"Papanii Okai" wrote:
Hi Guys,
As we wall know Atlas is a fairly new feature everyone is talking
about (atleast at my school). Even though the idea of Ajax has been used in
the past i was wondeing if anyone could explain a few things to me.
Comparing the performance of both asp.net client call backs and Atlas which
is faster? Do they necessarily do the same things? Are there things Atlas
can do that client callbacks can't? Secondly, even though there is a Atlas
library which makes coding easier, does that make it necessarily better for
developement?

Thanx

--Papanii

Apr 13 '06 #3
Hi Dustin,
I agree with you 100% but you still didn't answer the
question of whether or not Atlas is faster in performance than Asp.net
client callbacks (without full page postbacks). They both achieve the same
results since they are posting back only a portion of the page. After
building a few apps with client callbacks, I felt it fairly easy to get the
same functionality as I would get with Atlas. But as Clickon said in his
last post Atlas is in a very early stage. I am just curious with the
performance of each since they are very few articles regarding this matter.

--Papanii

"Dustin van de Sande" <Du**************@discussions.microsoft.com> wrote in
message news:48**********************************@microsof t.com...
Hi Papanii,

Normal ASP posts your entire page back on a event. This generates pretty
much traffic. With atlas you can only post back a portion of your page.
The benefits of this is that it generates less traffic, but also greatly
improves the user experiece. Because only a portion is updated your screen
flickers less and so your web application looks more like a Windows
application.

For more information and a library to use it go to: http://atlas.asp.net/

"Papanii Okai" wrote:
Hi Guys,
As we wall know Atlas is a fairly new feature everyone is
talking
about (atleast at my school). Even though the idea of Ajax has been used
in
the past i was wondeing if anyone could explain a few things to me.
Comparing the performance of both asp.net client call backs and Atlas
which
is faster? Do they necessarily do the same things? Are there things Atlas
can do that client callbacks can't? Secondly, even though there is a
Atlas
library which makes coding easier, does that make it necessarily better
for
developement?

Thanx

--Papanii

Apr 13 '06 #4
Hi Papanii,

Daniel posted a comparison of the available AJAX frameworks at:
http://www.daniel-zeiss.de/AJAXComparison/Results.htm

Hope this anwers your question.

"Papanii Okai" wrote:
Hi Dustin,
I agree with you 100% but you still didn't answer the
question of whether or not Atlas is faster in performance than Asp.net
client callbacks (without full page postbacks). They both achieve the same
results since they are posting back only a portion of the page. After
building a few apps with client callbacks, I felt it fairly easy to get the
same functionality as I would get with Atlas. But as Clickon said in his
last post Atlas is in a very early stage. I am just curious with the
performance of each since they are very few articles regarding this matter.

--Papanii

"Dustin van de Sande" <Du**************@discussions.microsoft.com> wrote in
message news:48**********************************@microsof t.com...
Hi Papanii,

Normal ASP posts your entire page back on a event. This generates pretty
much traffic. With atlas you can only post back a portion of your page.
The benefits of this is that it generates less traffic, but also greatly
improves the user experiece. Because only a portion is updated your screen
flickers less and so your web application looks more like a Windows
application.

For more information and a library to use it go to: http://atlas.asp.net/

"Papanii Okai" wrote:
Hi Guys,
As we wall know Atlas is a fairly new feature everyone is
talking
about (atleast at my school). Even though the idea of Ajax has been used
in
the past i was wondeing if anyone could explain a few things to me.
Comparing the performance of both asp.net client call backs and Atlas
which
is faster? Do they necessarily do the same things? Are there things Atlas
can do that client callbacks can't? Secondly, even though there is a
Atlas
library which makes coding easier, does that make it necessarily better
for
developement?

Thanx

--Papanii


Apr 13 '06 #5
NH
On the contary, Atlas is of great use in its current state (March CTP or
April CTP), I am using it in a production system already. I am mainly using
Atlas:Updatepanels and the user experience is amazing in comparison to the
"old" postbacks.....

"clickon" wrote:
Atlas uses the client call backs built into ASP.net 2.0. The idea of it is
to automate the process and allow you to use server side markup and code to
generate the client side stuff, in much the same way as current ASP.net
generates various cleint side scripts to deal with things like auto post back
and validation. Currently it's all a bit moot as Atlas is at such an early
stage it is not much practical use at all. I would say Atals will make for
better development, after all would you code your own validation routing when
using an ASP.net validation control will work?

"Papanii Okai" wrote:
Hi Guys,
As we wall know Atlas is a fairly new feature everyone is talking
about (atleast at my school). Even though the idea of Ajax has been used in
the past i was wondeing if anyone could explain a few things to me.
Comparing the performance of both asp.net client call backs and Atlas which
is faster? Do they necessarily do the same things? Are there things Atlas
can do that client callbacks can't? Secondly, even though there is a Atlas
library which makes coding easier, does that make it necessarily better for
developement?

Thanx

--Papanii

Apr 13 '06 #6

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

Similar topics

2
by: rogersmail | last post by:
Greetings to all, Can anyone tell me if Atlas can work directly with C# classes not defined as a webservice. sort of like a servlet class. I would like to create a thin and thick client for...
5
by: Varangian | last post by:
I'm not sure if there was already a post on this.. if so I apologise My question is what difference is there between Atlas and ASP.NET callback and why should people go on Atlas rather than on...
2
by: A.Wussow | last post by:
Hi Everybody, i want to load dynamically content from some user controls (with forms, or some data-controls) using atlas. So i use an UpdatePanel for loading the user control into a placeholder....
0
by: sonic | last post by:
i just noticed that my page onload is called 2nd time by what appears to be atlas profile service. i am using client side atlas profile, but i am not sure what it is calling my page onload and...
2
by: Bob | last post by:
Hi, I develop aspnet applications (no webservices) often using gridviews with sorting and dropdownlist ... I was wondering whether i could use 'ajax' methods for speeding up my applications...
4
by: Brad Baker | last post by:
I'm trying to implement a gridview control using atlas & asp.net per the following article: http://weblogs.asp.net/scottgu/archive/2005/12/26/433997.aspx My frustration is that the page I've...
3
by: CK | last post by:
Hi All, Is there any way to disable controls when doing an atlas callback? We have a webform with controls like drop downs that are in Atlas Update Panels. When you make a selection in the drop...
1
by: jmdolinger | last post by:
Hi all, I'm a newbie to Atlas (and recently ASP.NET) after coming from a long Java background, also have done quite a bit with an Ajax.NET/ASP.NET 1.1 project, but it was basically all...
0
by: Muralidharan Ramakrishnan | last post by:
Hi, 1) I have a Asp.net 2.0 web form and with 2 labels in it. The first label is loaded from a local resource at App_LocalResourcesFolder. 2) The page has both culture and uiculture set to...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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...

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.