Bonjour,
Je suis débutant sur Asp.net, j'ai une page web qui contient une ListView et DataPager, lorsque je clique sur le bouton d'actualisation de page de mon navigateur un message de confirmation apparaît :
Comment se débarrasser de ce message ?
Voilà mon code :
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
25
26
27
28
29
30
31
32
33
34 <!-- Control List (tri,Pagination...) --> <div class="row PagerCont"> <div class="col-sm-3"> </div> <div class="col-sm-6 ListPager"> <asp:DataPager ID="DPPr" class="btn-group pager-buttons" runat="server" PagedControlID="LVPr" PageSize="6"> <Fields> <asp:NextPreviousPagerField ShowLastPageButton="False" ShowNextPageButton="False" RenderNonBreakingSpacesBetweenControls="false" /> <asp:NumericPagerField /> <asp:NextPreviousPagerField ShowFirstPageButton="False" ShowPreviousPageButton="False" RenderNonBreakingSpacesBetweenControls="false" /> </Fields> </asp:DataPager> </div> <div class="col-sm-3"> </div> </div> <!-- Control List (tri,Pagination...) End --> <br /> <!-- Liste --> <asp:ListView ID="LVPr" runat="server" OnPagePropertiesChanging="LVPr_PagePropertiesChanging"> <ItemTemplate> <div class="col-sm-4 DataPrCont"> <table> <tr><td><div id="ImgPrCont"><asp:ImageButton ID="ImgPr" runat="server" CssClass="AllPrImgBtn" ImageUrl='<%#Page.ResolveUrl(Eval("ImgName").ToString()) %>' PostBackUrl='<%#Page.ResolveUrl("~/Pages/SinglePr.aspx?Id=") + Eval("ID") %>' /></div></td></tr> <tr><td><div id="PrNameCont"><asp:Label ID="LblPrName" runat="server" CssClass="AllPrPrName" Text='<%#Eval("PrName") %>'></asp:Label></div></td></tr> <tr><td><div id="PrPrixCont"><asp:Label ID="LblPrPrix" runat="server" CssClass="AllPrPrixTxt" Text='<%#Eval("Prix") %>'></asp:Label></div></td></tr> <tr><td><div id="PrDescrCont"><p><%#(Eval("PrDescr").ToString()).Substring(0,40) + "..." %></p></div></td></tr> </table> </div> </ItemTemplate> </asp:ListView> <!-- Liste End-->Merci
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 protected void Page_Load(object sender, EventArgs e) { if(!Page.IsPostBack) { FillPrLV(); } } private void FillPrLV() { DataTable DTImg = PublicFct.DTable_With_Condition("select ID,ImgName,PrName,Prix,PrDescr from TblPrImg"); this.LVPr.DataSource = DTImg; this.LVPr.DataBind(); } protected void LVPr_PagePropertiesChanging(object sender, PagePropertiesChangingEventArgs e) { this.DPPr.SetPageProperties(e.StartRowIndex, e.MaximumRows, false); FillPrLV(); }
Partager