afficher un panel en premier plan
Bonjour, je voudrais afficher un panel en premier plan avec une image qui affiche "please wait, traitement en cours"..
J'ai pensé à mettre dans ma page d'aspx :
Code:
1 2 3 4 5 6 7 8 9
|
<asp:UpdateProgress ID="UpdateProgress1" runat="server" DisplayAfter="40">
<ProgressTemplate>
<img src=".../img/pleasewait.gif" style="WIDTH: 25px; HEIGHT: 25px" />
<asp:Label ID="lbl_encours" runat="server" Font-Bold="True" Font-Names="Arial"
Font-Size="12px" ForeColor="#336699" text="... traitement en cours ..." Width="150px" />
</ProgressTemplate>
</asp:UpdateProgress> |
ET sur ma page de code : aspx.vb :
Code:
1 2 3 4 5
|
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
Me.UpdateProgress1.Visible = True
End Sub |
Pouvez-vous m'aider, mercii!