0
我使用VS 2012與AjaxControlToolkit(4.0)。在這裏我的源代碼如何使用CalendarExtender與Scripmanager(不是ToolkitScriptManager)
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="SoTNMTApplication.WebForm1" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="GlobalSite/Scripts/jquery.min.js"></script>
</head>
<body>
<form id="form1" runat="server">
<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>
<asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="TextBox1"></asp:CalendarExtender>
</form>
</body>
</html>
CalendarExtender不工作
它只能與ToolkitScriptManager工作。
如何使用CalendarExtender與Scripmanager(未ToolkitScriptManager)