0
On the page I’m changing there was already a modal modalOrgao, and was already being used the Script Manager
within the Master Page
. This modal carries a gridview
with its results, so far so good... But there arose a change and it was necessary to call a new modal (modal Design) with another gridview
(all within an Updatepanel) There arises the problem!
As this new modal is called?
Within a gridview
There is a button that clicks information.
The modal is created the information is processed, and before it is presented in the modal, the whole page does the postback
and consecutively the modal disappears and the information is not presented.
The modalOrgao, it continues with its correct functioning, does not do the postback
on the page and yes only in the area designated to the modal.
I don’t know if I passed the information correctly.
Thanks in advance!
Follow a piece of mine Masterpage:
<form id="form1" runat="server" autocomplete="off" class="formValidation">
<asp:ScriptManager id="ScriptManager1" runat="server"></asp:ScriptManager>
<uc1:barraTopo ID="barraTopo" runat="server" />
<div id="container">
<uc2:cabecalho ID="cabecalho" runat="server" />
<div id="content">
<uc3:menu ID="menu" runat="server" />
<div id="main">
<asp:Label ID="lblMensagem" runat="server" Text="Mensagem" CssClass="statusRealizado" Visible="false"></asp:Label>
<asp:ContentPlaceHolder id="contentPlaceHolder" runat="server"> </asp:ContentPlaceHolder>
<asp:ContentPlaceHolder id="contentPlaceHolder1" runat="server"> </asp:ContentPlaceHolder>
<asp:ContentPlaceHolder id="contentPlaceHolder2" runat="server"> </asp:ContentPlaceHolder>
</div>
</div>
<uc4:rodape ID="rodape" runat="server" />
</div>
</form>
It’s not [tag:Asp.net]?
– Jéf Bueno
Yes it is Asp.net.!
– Fernando Veras