PageFlakes flakes

  • Thread starter Thread starter Alixx Skevington
  • Start date Start date
A

Alixx Skevington

Hi,
I am trying to get atlas and asp.net to allow me to do a similar thing to
the www.pageflakes.com flake. In as much as I want to to bale to have a
wrapper for any control that displays that it is loading.

Does anyone have an samples or pointers in how to achive this.

Alixx
 
Hi Alixx,

Thank you for your post.

Based on my understanding, your question is about how to create a user
interface to indicate progress rather than leave the user guessing about
what is happening. If I've misunderstood anything, please feel free to post
here.

In Atlas, there is a new control atlas:UpdateProgress, works closely with
the PageRequestManager class on the client to automatically enable progress
display. Here's a basic sample:

<atlas:ScriptManager runat="server" id="scriptManager"
EnablePartialRendering="true" />

<atlas:UpdatePanel runat="server" ...>
...
</atlas:UpdatePanel>

<atlas:UpdateProgress runat="server" id="updateProgress1">
<ProgressTemplate>
<img src="Progress.gif" /> Contacting Server...
</ProgressTemplate>
</atlas:UpdateProgress>

You can find more info here:

#Atlas M1 Refresh
http://www.nikhilk.net/AtlasM1Refresh.aspx

Please note, currently Atlas's final version is not released yet.

And here's some Atlas resources that you can use:
==============================================
Updates, samples, and other documents are available on the "Atlas" Web site
(http://atlas.asp.net).

Please use the ASP.NET forums to post questions and bug reports. "Atlas"
team members are actively engaged in the forum.

#Atlas Discussions and Suggestions:
http://forums.asp.net/1007/ShowForum.aspx

#Atlas UI:
http://forums.asp.net/1008/ShowForum.aspx

#Atlas Networking and Services:
http://forums.asp.net/1009/ShowForum.aspx


Regards,
Walter Wang ([email protected], remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top