AJAX Accordion control

Slides:



Advertisements
Similar presentations
Main Title Here Additional copy here, additional copy here, additional copy here, additional copy here, additional copy here. ADD YOUR WEB ADDRESS HERE.
Advertisements

Web 2.0 Tools Carmen N. Malavé Lyvanice Pérez INCO 3005 (05) Dr. Jesús López Oral Presentation Wordpress.com.
1 Visual Studio Enhancements. 2 Integrated Ajax Support Don’t need an Ajax-Enabled Template Automatic Extender Detection Add Extender Wizard.
Kindergarten Math Fact Fluency Goal
The first thing to do Draw a 2×3 grid and put a multiplication sign in the top left hand corner.
© 2006 Microsoft Corporation. Les Toolkits : Accélérer le développement Web 2.0 Pierre Lagarde Relation Technique Développeur Microsoft France
Rehab AlFallaj. Ajax Control Toolkit Add Ajax functionality to your ASP.NET Web Forms applications without writing JavaScript Add Ajax functionality to.
Engrade Lesson Plans. Engrade’s help section is good for creating lesson plans so this will guide you to the videos/pages in the help section.help section.
Rehab AlFallaj. PasswordStrength is an ASP.NET AJAX extender that can be attached to an ASP.NET TextBox control used for the entry of passwords. The PasswordStrength.
CONTENTS Add your title welcome to use these powerpoint templates, New Content design, 10 years experience Add your title welcome to use.
Main Title Here Additional copy here, additional copy here, additional copy here, additional copy here, additional copy here. ADD YOUR WEB ADDRESS HERE.
CSCI 6962: Server-side Design and Programming Facelets and User Interface Design.
IT533 Lectures ASP.NET AJAX.
ASP.NET Rehab AlFallaj. Manualy type the following code for iframe tag in the aspx source code.
Multiplication Property of Exponents Today’s Objective: I can multiply exponential expressions.
Slide 1 Insert your own content.. Slide 2 Insert your own content.
Making the website. Get your folders sorted first Create a new folder in “N” called “My hockey website” Create folders inside called “Documents”, “images”
Rehab AlFallaj.  FilteredTextBox is an extender which prevents a user from entering invalid characters into a text box. Note that since this effect can.
Click to Add Title Click to Add Subtitle.
Click to Add Title Click to Add Subtitle.
Ajax Control Toolkit.
Powers and Exponents.
[First Name] [Last Name] [Date]
[First Name] [Last Name] [Date]
TYPO3 - Introduction.
Click to edit Master text styles
AJAX Confirm Button Extender
TITLE ENCODE SANS NORMAL 45 PT., ALL CAPS
Title Layout Subtitle Author.
Click to Add Title Click to Add Subtitle.
Click to Add Title Click to Add Subtitle.
Author names here Author association names here
Basic HTML and Embed Codes
Click to edit Master text styles
Title Layout Subtitle.
Presentation Title INSTRUCTIONS:
Sample Title for a W. P. Carey Presentation
Slide 1 Insert your own content.. Slide 1 Insert your own content.
Title Layout Subtitle.
TITLE ENCODE SANS NORMAL 45 PT., ALL CAPS
AJAX Rehab AlFallaj.
Web Content Management
Title Slide Layout Subtitle.
Slide 1 Insert your own content.. Slide 1 Insert your own content.
Slide 1 Insert your own content.. Slide 1 Insert your own content.
TITLE HERE ENCODE NORMAL BLACK, 50 PT..
Click to edit Master text styles
Slide Title Edit Master text styles Second level Third level
ОПШТЕСТВО ТЕМА: МЕСТОТО ВО КОЕ ЖИВЕАМ Скопје
Title Layout Subtitle Author.
PEMDAS MATH MADE EASY.
Presenter Department Affiliation Date of Presentation
Title Layout Subtitle Author.
Presentation Title INSTRUCTIONS:
Click to edit Master text styles
PERSONA for …… ADD PHOTO HERE “Insert a quote from the persona here.”
Main Title Here ADD YOUR WEB ADDRESS HERE
Title Layout Subtitle Author.
AJAX Calendar Control Rehab AlFallaj.
To Start: 15 Points Is the first number divisible by the second? 142,681 by 3 423,675 by 9 5,658,451 by 3 No Yes No.
Add Your Presentation Title
[First Name] [Last Name] [Date]
Title Slide Layout Subtitle.
Click to edit Master text styles
Title Slide Layout Subtitle.
[First Name] [Last Name] [Date]
TITLE HERE ENCODE NORMAL BLACK, 50 PT..
Title of presentation Subtitle Name, job title DD Month YEAR.
Watercolor Flower General PPT
Title of presentation Subtitle Name, job title DD Month YEAR.
Presentation transcript:

AJAX Accordion control Rehab AlFallaj

Accordion control The Accordion is a web control that allows you to provide multiple panes and display them one at a time. It is like having several CollapsiblePanels where only one can be expanded at a time. The Accordion is implemented as a web control that contains AccordionPane web controls. Each AccordionPane control has a template for its Header and its Content.

First: Add a ToolkitScriptManager <asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server"> </asp:ToolkitScriptManager>

Second: Add Accordion from Ajax Control Toolkit <asp:Accordion ID="Accordion1" runat="server"> </asp:Accordion>

Third: Add panes tag <pane> </pane>

Fourth: inside the panes insert AccordionPane as much as you want: 1 AccordionPane = 1 section 2 AccordionPane = 2 sections 3 AccordionPane = 3 sections

Fifth: inside each AccordionPane add a Header & a Content tags

Tutorial: http://www.asp.net/ajaxlibrary/AjaxControlToolkitSampleSite/Accordion/Accordion.aspx Video: http://www.asp.net/web-forms/videos/ajax-control-toolkit/how-do-i-use-the-aspnet-ajax-accordion-control