Bonsoir le forum,
je souhaite faire défiler des images sur une page web
pour cela j'ai écris le code suivant:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<%@ Page Language="VB" AutoEventWireup="false" CodeFile="Animmation.aspx.vb" Inherits="Animmation" %>
 
<!DOCTYPE html>
 
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:ScriptManager ID="ScriptManager1" runat="server"></asp:ScriptManager>
    <div>
        <asp:UpdatePanel ID="UpdatePanel1" runat="server">
            <ContentTemplate>
                <asp:AdRotator ID="AdRotator1" runat="server" AdvertisementFile="~/Defileimage.xml" Height="250px" Width="910px" />
                <asp:Timer ID="Timer1" runat="server">
                </asp:Timer>
            </ContentTemplate>
        </asp:UpdatePanel>
    </div>
    </form>
</body>
</html>
mais lors de l'exécution j'obtient toujours une erreur
Nom : erreee.PNG
Affichages : 217
Taille : 58,8 Ko
quelqu'un pourrais m'aider s'il vous plais?