AJAX

  • Thread starter Thread starter David Lozzi
  • Start date Start date
D

David Lozzi

Howdy,

Where do I go to start thinking about using AJAX or MS ATLAS?

Thanks,

David Lozzi
 
Atlas can be found on the www.asp.net site under the sandbox. That is a good
place to start. For general Ajax, there are plenty of sites. If you do not
want to play with Atlas (still in beta), you can jump over to a project like
Ajax.NET, although it does not have all of the bells and whistles.

If you really want to understand what is going on underneath the hood, you
can play with XML HTTP and set up your own. Not a good idea for long term,
but the understanding will get you through many hurdles.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*************************************************
Think outside of the box!
*************************************************
 
Hi,

Firsr you need instal Atlas S/w that you get from Microsoft site. (just a
dll gives to you)
then use this code for atlas update panel

<atlas:ScriptManager ID="ScriptManager1" runat="server"
EnablePartialRendering="True" />
<atlas:TimerControl ID="Timer1" runat="server" Interval="1000"
OnTick = "Timer1_Tick" />
<atlas:UpdatePanel ID="U1" runat="server" >
<ContentTemplate>
<asp:Label ID="Label1" runat="server" Height="57px"
Width="787px" BackColor="Red" Font-Bold="True" ForeColor="White"></asp:Label>


</ContentTemplate>
</atlas:UpdatePanel>


Thsi will create update panel inside the atlas area and timer will run every
one sec and you can update ypur label inside the timer_click

protected void Timer1_Tick(object sender, EventArgs e)
{
label1.text= i.ToString
i= i+1;
//i you have to declare

// label will update every one sec with out the page rendering


}

Hope this help you

You can look into codeproject.com for more samples
 
Back
Top