1: <%@ Page Language="C#" AutoEventWireup="true" Title="AtomicButton -- Client Side API" CodeBehind="ClientSideAPI.aspx.cs" Inherits="Atom.Website.Samples.AtomicToggleButton.ClientSideAPI" %>
2:
3: <%@ Register Assembly="Atom.Web" Namespace="Atom.Web.UI.WebControls" TagPrefix="atom" %>
4: <%@ Register Src="../Source.ascx" TagName="Source" TagPrefix="sample" %>
5: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6: <html xmlns="http://www.w3.org/1999/xhtml">
7: <head id="Header1" runat="server">
8: <link rel="Shortcut Icon" type="image/ico" href="../images/icon.png" />
9: <!-- The jQuery UI theme that will be used by the components. -->
10: <link href="../themes/base/jquery-ui.css" rel="stylesheet" type="text/css" />
11: <!-- jQuery runtime minified -->
12: <script src="../Scripts/jquery-1.9.1.js" type="text/javascript"></script>
13: <!-- jQuery UI runtime minified, client-side javascript of the components.-->
14: <script src="../Scripts/jquery-ui-1.10.3.custom.min.js" type="text/javascript"></script>
15: <!-- This style reference is needed only for the current example. -->
16: <link href="../css/example.css" rel="stylesheet" type="text/css" />
17: </head>
18: <body>
19: <form id="form1" runat="server">
20: <div>
21: <atom:AtomicToggleButton ID="AtomicToggleButton1" runat="server" Text="Atomic Toggle Button" />
22: </div>
23: <br />
24: <sample:Source ID="Code" runat="server" />
25: </form>
26: </body>
27: </html>