Demo Showing jQuery Accordion Menu Using CSS

Click the headers to expand or collapse.

Asp.Net

Hello World (C#)
        using System;
        protected void Page_Load(object sender, EventArgs e)
        {
          Response.Write("Hello, world");
        }

jQuery

jQuery is a JavaScript library to write cross browser client side script.
        $(document).ready(function() {
            $('#accordion').accordion();
    
            $('#Close').click(function() {
                $('#div').hide();
            });    
        });

CSS

Cascading Style Sheets (CSS) is used for styling and laying HTML elements on a web page.
        .classname div { 
            padding:3px 5px; border:solid 1px #CCC 
        }
        

Ajax

Ajax (Asynchronous JavaScript and XML) allows Web applications to send and receive data from a server, asynchronously. It is a clean way of communicating with a server, without refreshing the existing page.

Ajax Tutorials and Examples!

SQL Server

Microsoft's SQL Server is a Relational Database Managment System (RDBMS), whose primary function is to store and retrieve various types of data.
            SELECT EmpID, EmpName, Designation
                FROM Employee
                    WHERE EmpID = 3

Go back to Tutorial
More interesting and interactive Demos