Click here to Skip to main content
15,911,789 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
the Master Page displays the link in new page i want to displays within the page like mdiform

please reply for this question
Posted
Comments
Balakrishnan Dhinakaran 15-Dec-11 4:55am    
Question is not clear you please display your content page coding and master page coding(only relevant coding )

1 solution

Do you mean the page re-loads??
As i suggested in your previous question you need ajax to do that.

having this code in masterpage might help
<body>
    <asp:scriptmanager id="ScriptManager1" runat="server" xmlns:asp="#unknown">
    </asp:scriptmanager>
    <form id="form1" runat="server">
    <div>
        <asp:updatepanel id="UpdatePanel1" runat="server" updatemode="Conditional" xmlns:asp="#unknown">
        <contenttemplate>
        <asp:contentplaceholder id="ContentPlaceHolder1" runat="server">
        
        </asp:contentplaceholder>
        </contenttemplate>
        </asp:updatepanel>
    </div>
    </form>
</body>
 
Share this answer
 

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