关于图片轮播的问题!!
关于图片轮播的问题!!为什么同样的代码,当bin文件里引用的是bin1中的文件时,就可以实现图片轮播。而引用bin2中的文件时,就不能实现图片轮播呢?
而且bin1和bin2中AjaxControlToolkit.dll文件的大小也不一样,bin1中是1.11M bin2(Ajax4.0)中是6.95M。(我用的是VS2010)
程序代码:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www."> <html xmlns="http://www."> <head runat="server"> <title>无标题页</title> </head> <body style="font-size:16px"> <form id="form1" runat="server"> <div align="center"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <asp:Image ID="Image1" runat="server" Height="200px" Width="300px" /> <asp:SlideShowExtender ID="SlideShowExtender1" runat="server" TargetControlID="Image1" AutoPlay="true" Loop="true" PlayInterval="3000" SlideShowServicePath="Photo_Service.asmx" SlideShowServiceMethod="GetSlide" > </asp:SlideShowExtender> </div> </form> </body> </html>