Posted on: 10/15/2014 2:36:50 AM | Views : 391

Following is the coding of Default.aspx
<%@ Page Title="" Language="C#" MasterPageFile="~/MainLayout.Master" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="nz.net.tcs.Default" %> <asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server"> <script type="text/javascript"> $(document).ready(function () { $("#Button1").click(function () { alert("Hello world!"); }); }); </script> </asp:Content> <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> <p> <h2>HOME PAGE CONTENT</h2> </p> <asp:Button ID="Button1" runat="server" Text="Button" /> </as ...

Go to the complete details ...