Click here to Skip to main content
16,020,103 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Hi,

i am using Ajax's DragPanelExtender control(it use for absolute moving of control on page) at master page as

XML
<ACT:DragPanelExtender ID="DPE_TextComments" runat="server" TargetControlID="panel_TextComments"
                       DragHandleID="lbl">
                   </ACT:DragPanelExtender>
                   <asp:Panel ID="panel_TextComments" runat="server" BackColor="Snow" Width="250" HorizontalAlign="Center">
                       <asp:TextBox ID="txt_comments" runat="server"></asp:TextBox>
                       <asp:Label ID="lbl" runat="server" Text="Drag this"></asp:Label>
                   </asp:Panel>

It can moves on master page area properly but i can not able to set it on content page.

Another way to set it on content page is to create this code on each page rather on master page but its very time consuming in case of multiple pages.

Please guide me how can i achieve to move and set this control on contents page also.

Thanks in advance.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900