| 12345678910111213141516171819202122232425262728293031 |
- <%@ Page Language="C#" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <script runat="server">
- </script>
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head runat="server">
- <title>Canceling an Existing Postback</title>
- <style type="text/css">
- body {
- font-family: Tahoma;
- }
- </style>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <asp:ScriptManager ID="ScriptManager1" runat="server" />
- <script type="text/javascript" language="Javascript">
-
- </script>
- The page so far has only a ScriptManager control defined and
- an empty script block.
- </div>
- </form>
- </body>
- </html>
|