Category Archives: AJAX

.NET AJAX

CalendarExtender and globalization

Set the ScriptManager:


<asp:ScriptManager ID="ScriptManager1" runat="server" EnableScriptGlobalization=true  ></asp:ScriptManager>

AJAX ASP.Net

Triggers in updatepanel (sample)

This sample shows how to trigger a updatepanel from a control outside of it:


<asp:UpdatePanel ID="uPanel1" runat="server" UpdateMode=Conditional >
<ContentTemplate>

<asp:TextBox ID="txtMyNumber" runat="server"></asp:TextBox>

<asp:UpdateProgress ID="UpdateProgress1" runat="server" AssociatedUpdatePanelID=uPanel1>
<ProgressTemplate>
<asp:Image ID="imgAjaxLoader" runat="server" ImageUrl="~/Icon/ajax-loader.gif"/> 
</ProgressTemplate>
</asp:UpdateProgress>

</ContentTemplate>

<Triggers>
<asp:AsyncPostBackTrigger ControlID ="btnUpdateMyNumber" />
</Triggers>

</asp:UpdatePanel>

<asp:Button  runat="server" ID="btnUpdateMyNumber" Text="Set My Number"  />

.NET AJAX ASP.Net 2.0 Microsoft

.NET Framework 4 Chart Controls

You can now download Visual Studio 2010 projects that contain all the samples targeting .NET Framework 4.

The samples environment for Microsoft Chart Controls for .NET Framework contains over 200 samples for both ASP.NET and Windows Forms. The samples cover every major feature in Chart Controls for .NET Framework. They enable you to see the Chart controls in action as well as use the code as templates for your own web and windows applications.

ChartSamples_thumb_1.jpg

The samples environments each contains a Getting Started section to help you start using the Chart controls quickly. The samples demonstrates how to use the following features in Microsoft Chart Controls for .NET Framework:

  • All supported chart types.
  • Data series, chart areas, axes, legends, labels, titles, and more.
  • Data Binding
  • Data manipulation, such as copying, splitting, merging, alignment, grouping, sorting, searching, filtering, and more.
  • Statistical formulas and financial formulas.
  • Advanced chart appearance, such as 3D, anti-aliasing, lighting, perspective, and more.
  • Chart rendering.
  • Events and Customizations.
  • Interactivity and AJAX.

http://archive.msdn.microsoft.com/mschart

AJAX ASP.Net ATLAS

Using CSS Friendly Control Adapters

Thanks to Tim for this solution. In order to add the CSS Friendly adapter to your project, you will need to:

  1. Download CSSFriendly.dll and CSSFriendlyAdapters.browser from here.
  2. Inside your project, add a reference to CSSFriendly.dll.
  3. Add the special folder App_Browsers to your project, and copy the file CSSFriendlyAdapters.browser.

The CSS Friendly Control Adapters will render all the listed controls (Menu, TreeView, DetailsView, …) using CSS and HTML standards.

http://www.codeplex.com/cssfriendly

AJAX ATLAS

ASP.NET AJAX Control Toolkit

Atlas Logo

Além dos controlos finais para utilização, este pacote tem código fonte para que você possa criar seus controlos.

http://atlas.asp.net/atlastoolkit

http://ajax.asp.net/downloads/default.aspx?tabid=47

AJAX JAVA

Lightbox JS

Lightbox JS is a simple, unobtrusive script used to overlay images on the current page. It’s a snap to setup and works on all modern browsers.

http://www.huddletogether.com/projects/lightbox/

http://www.huddletogether.com/projects/lightbox2/Â

AJAX ATLAS

Ajax (AJAX – Asynchronous Javascript And Xml)

Mas afinal, o que é esse tal de Ajax?

Ajax é a abreviação de Asynchronous JavaScript And XmlHttpRequest e se você nunca ouviu falar dessa tecnologia, é bom correr e começar a dar uma olhada em sites como o Gmail, Google Earth, dentre outros.

É claro que a Microsoft, que está atenta a esses “detalhes” não ficaria simplesmente olhando tudo acontecer, e tchã tchã tchã tchã… Atlas. Mas isso é assunto para um próximo artigo. Para os interessados, podem dar uma olhada no endereço Atlas.

Mas voltando ao Ajax, essa não é uma tecnologia recente pra falar a verdade, mas até então, não havia sido batizada por assim dizer.

Mas ainda não falei sobre o que na verdade o Ajax faz.

Bem, tecnicamente e resumidamente falando, consiste em utilizar Javascript, Xml e XmlHttpRequest para que suas páginas façam chamadas ao servidor sem precisar recarregar a página. (bem resumido não???)

Confuso? Nem um pouco…

Imagine como seria maravilhoso se um usuário do seu site realizasse uma pesquisa e o resultado simplesmente aparecesse em sua tela.

Com o Ajax isso é possível.

——-

links:

http://www.yourhtmlsource.com/javascript/ajax.html
http://www.xul.fr/en-xml-ajax.html
http://developer.mozilla.org/en/docs/AJAX:Getting_Started
http://en.wikipedia.org/wiki/AJAX#Tutorials