Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7954037
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T03:18:12+00:00 2026-06-04T03:18:12+00:00

I want to use an AJAX update panel in a web master page ,

  • 0

I want to use an AJAX update panel in a web master page , but It does not work
i try to open an another proget for doing the same steps , it’s works well , but in this page it cant work
this is the code :

<%@ Page Title="" Language="VB" MasterPageFile="~/GIAC/Accueil/GiacMasterPage.master" AutoEventWireup="false" CodeFile="Les_Dossiers_Finance.aspx.vb" Inherits="GIAC_Gestion_des_dossiers_Les_Dossiers_Finance" %>

<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Gestion_Dossier_Finance" ContentPlaceHolderID="Corps" Runat="Server">
      <center> <div id="Bar_Nav_Gestion_Dossier_Inter">
            <p id="p1"><a href="Tous_Les_Dossiers.aspx">Consulter <br /> Tous les dossiers</a></p>          
            <ul>
                <li id="li1"><a href="Les_Dossiers_Finance.aspx">Les dossiers qui sont prêts a remplir avec les information de finance</a></li>
                <li id="li2"><a href="Les_Dossiers_Rembourse.aspx">Les dossiers qui sont prêts a remplir avec les information de remboursement</a></li>
                <li id="li3"><a href="Prete_Envoyer_OFPPT.aspx">Les dossiers qui sont prêts a envoyer au OFPPT</a></li>
                <li id="li4"><a href="Deja_Envoyer_OFPPT.aspx">Les dossiers qui sont déja envoyer a OFPPT</a></li>
                <li id="li5"><a href="Retour_OFPPT.aspx">Retour de L’OFPPT  </a></li>                                                
            </ul>
            <p id="p2">Nouveau dossier</p>
       </div></center>
       <div id="BarRecherche">
            Filtrer les dossiers par : 
           <asp:DropDownList ID="RecherhcerComboBox" runat="server" ONCHANGE="Recherche()">
               <asp:ListItem Selected="True" Value="Rien">--Sélectionner le type--</asp:ListItem>
               <asp:ListItem Value="CNSS">CNSS d&#39;entreprise</asp:ListItem>
               <asp:ListItem Value="Date">Date de dépôt des dossiers</asp:ListItem>
               <asp:ListItem Value="ID">Identifiant d&#39;entreprise</asp:ListItem>
           </asp:DropDownList>

       </div>        
        <asp:Panel ID="SearchPanel" runat="server">

           <div id="CNSSRech">
               <asp:Panel ID="PanelCNSS" runat="server" >
                     Saisir la CNSS : 
                     <asp:TextBox ID="CNSSTxt" runat="server" Height="23px" placeholder="CNSS" style="font-family : Comic Sans MS, Arial, Tahoma; color:Red;"></asp:TextBox>
                   <asp:Button ID="RechercherCNSS" runat="server" Text="Rechercher" />
               </asp:Panel>  
            </div>



         <div id="IDRech">
               <asp:Panel ID="PanelID" runat="server" >
                     Saisir l'identifiant d'entreprise : 
                     <asp:TextBox ID="IDTxt" runat="server" Height="23px" 
                         placeholder="identifiant" 
                         style="font-family : Comic Sans MS, Arial, Tahoma; color:Red;" 
                         Width="91px"></asp:TextBox>
                   <asp:Button ID="RechercherID" runat="server" Text="Rechercher" />
               </asp:Panel> 
            </div> 

            <div id="DateRech">
               <asp:Panel ID="PanelDate" runat="server" >
                     Entre :  
                     <asp:TextBox ID="Date_Debut" runat="server">
                     </asp:TextBox>
                     Et :
                     <asp:TextBox ID="Date_Fin" runat="server">
                     </asp:TextBox> 
               </asp:Panel>  
            </div>
           </asp:Panel>
    <asp:ScriptManager ID="ScriptManager1" runat="server">
    </asp:ScriptManager>
            <div class="GridViewDiv">
          <asp:UpdatePanel ID="UpdatePanel1" runat="server">
          <ContentTemplate>
              <asp:SqlDataSource ID="SqlDataSource1" runat="server" 
                  ConnectionString="<%$ ConnectionStrings:NorthwindConnectionString %>" 
                  SelectCommand="SELECT * FROM [Products]"></asp:SqlDataSource>
              <asp:GridView ID="GridView1" runat="server" AllowPaging="True" 
                  AllowSorting="True" AutoGenerateColumns="False" DataKeyNames="ProductID" 
                  DataSourceID="SqlDataSource1">
                  <Columns>
                      <asp:CommandField ShowSelectButton="True" />
                      <asp:BoundField DataField="ProductID" HeaderText="ProductID" 
                          InsertVisible="False" ReadOnly="True" SortExpression="ProductID" />
                      <asp:BoundField DataField="ProductName" HeaderText="ProductName" 
                          SortExpression="ProductName" />
                      <asp:BoundField DataField="SupplierID" HeaderText="SupplierID" 
                          SortExpression="SupplierID" />
                      <asp:BoundField DataField="CategoryID" HeaderText="CategoryID" 
                          SortExpression="CategoryID" />
                      <asp:BoundField DataField="QuantityPerUnit" HeaderText="QuantityPerUnit" 
                          SortExpression="QuantityPerUnit" />
                      <asp:BoundField DataField="UnitPrice" HeaderText="UnitPrice" 
                          SortExpression="UnitPrice" />
                      <asp:BoundField DataField="UnitsInStock" HeaderText="UnitsInStock" 
                          SortExpression="UnitsInStock" />
                      <asp:BoundField DataField="UnitsOnOrder" HeaderText="UnitsOnOrder" 
                          SortExpression="UnitsOnOrder" />
                      <asp:BoundField DataField="ReorderLevel" HeaderText="ReorderLevel" 
                          SortExpression="ReorderLevel" />
                      <asp:CheckBoxField DataField="Discontinued" HeaderText="Discontinued" 
                          SortExpression="Discontinued" />
                  </Columns>
              </asp:GridView>
              </ContentTemplate>
          </asp:UpdatePanel>
      </div>
</asp:Content>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T03:18:13+00:00Added an answer on June 4, 2026 at 3:18 am

    You are missing your UpdatePanel’s ContentTemplate.

    Here’s a detailed read on the UpdatePanel: UpdatePanel Class

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a standard web page with Ajax update panel. WorkFlow of the page
I want to start an application which will use ajax push, however the web
I want to use the new combobox control of the Ajax control Toolkit. But
another day with Rails and today I want to use Ajax. linkt_remote_link for changing
I want to use Goolge AJAX Feed API in my C# console application to
I want to use the ajax dll 3.5 in the website of framework 2.0
I have an asp.net user control on which I want to use jquery ajax.
I want to settle on a GUI framework, and use AJAX, as simply as
I want to create a simple AJAX call, based on How to use Servlets
i want use some data from a website with web service. i have a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.