473,804 Members | 3,088 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1398
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******** *************** ***********@mic rosoft.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******** *************** ***********@mic rosoft.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:Updatepan els 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
1481
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 my app. If I need to use webservices to talk to my system for both cases, then that seems to me to be a waste of resources. It would seem easier to create a
5
1343
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 the ASP.NET 2.0 Callback? I used both of them:- Atlas was easy to use, just put the controls you wish in an UpdatePanel and all that, however the update panel still flickers if you put lots
2
1805
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. Using buttons for loading new content works fine. But i still want to use a function which is callable per javascript. I think this way is more flexable than using the Buttons, becaus every button needs it's own Sub-Routine. But i want to have...
0
960
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 appends the following to query string (without key): Request.QueryString "08/23/2006 14:24:32.463,08/23/ScriptServices/Microsoft/Web/Services/Standard/ProfileWebService.asmx?mn=GetProfile" keeping in mind that "Updated" is my query string...
2
1168
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 (e.g. when sorting, the whole page is refreshed) . Now i read about client callback and atlas and i have some questions about that. 1) what's the best i can use (atlas or client callback)?
4
2228
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 written seems to work fine on my local machine but when I upload it and execute it on the server the page doesn't use AJAX. (It reloads the entire page each time I make a change). I've loaded atlas on the server and I've uploaded several atalas...
3
1203
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 down, it updates other control values on the page. The problem is when a user makes a change, then the callback starts, if the user like scrolls the drop down during the callback, the values get all messed up and the controls are not properly...
1
3532
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 javascript, nothing really having to do with ASP.NET... I'm attempting to put together an application that consists of several GridView controls each bound to some xml data. Each table exists in its own update panel. The two effects I'm going for are:
0
904
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 "auto" . I have localised one language ta-IN apart from en-US (base language)
0
9705
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
9575
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
10564
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
10308
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
10073
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
7609
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
6846
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
5645
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4288
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.