How to use Atlas?
Step 1
Copy Microsoft.Web.Atlas.dll
in the bin of your web project , download from
http://www.microsoft.com/belux/msdn/nl/community/columns/redo/atlas.mspx
Step 2
Add reference to web project
Step 3
Place the following code
inside the web config file.
<system.web>
<pages
theme="default">
<controls>
<add
namespace="Microsoft.Web.UI" assembly="Microsoft.Web.Atlas" tagPrefix="atlas"/>
<add
namespace="Microsoft.Web.UI.Controls" assembly="Microsoft.Web.Atlas" tagPrefix="atlas"/>
</controls>
</pages>
</system.web>
Step 4
Now register the atlas
control in your aspx page
<%@
Register namespace="Microsoft.Web.UI.Controls"
assembly="Microsoft.Web.Atlas"
tagPrefix="atlas"%>
Step 5
In side the page body
<atlas:ScriptManager id="ScriptManager1"
runat="server"
EnablePartialRendering="true"
/>
<atlas:UpdatePanel
ID="UpdatePanel1"
runat="server"
>
<ContentTemplate>
Place here all grid, repeater, datalist or any control
that may interact with database.
</ContentTemplate>
</atlas:UpdatePanel>