Hello,

In my project,i am handling popup messages through the asp panel and
div controls.when that popup comes by clicking a button say btnsend,
the background ie the page should become inactive,no button click or
any other functionality should not be done..

The popup panel's css class is popupcurve

.popupcurve
{
        width:45%;

        color: #000000 !important;
        border: 15px solid #cecdbb;
        background-color: #FFFFFF;
        position: fixed !important;
        top: 40%;
        left: 25%;
z-index: 105;

}

The page is like this
<body>
<asp:Button runat="server" ID="butn" Text="Send" />
<asp:Panel ID="PnlConfirmation" runat="server" CssClass="popupcurve"
Visible="false">
<div class="popupcurve_inside" >
     <table style="width: 100%;">
     <tr>
      <td align="center">
      <asp:Button ID="btnok"   runat="server"  Text="OK" />
        </td>
          </tr>
        </table>
  </div>
</asp:Panel>



    </form>
</body>
Please help me

--

You received this message because you are subscribed to the Google Groups 
"jQuery Development" group.
To post to this group, send email to jquery-...@googlegroups.com.
To unsubscribe from this group, send email to 
jquery-dev+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/jquery-dev?hl=en.


Reply via email to