Click here to Skip to main content
15,887,683 members
Home / Discussions / ASP.NET
   

ASP.NET

 
QuestionCache Problem Pin
Shyamjith Cherukara11-Dec-11 18:07
Shyamjith Cherukara11-Dec-11 18:07 
QuestionUsing wiki templates Pin
_AnsHUMAN_ 11-Dec-11 17:17
_AnsHUMAN_ 11-Dec-11 17:17 
QuestionMVC Areas - Home Controller naming conflict Pin
DaveAuld11-Dec-11 14:03
professionalDaveAuld11-Dec-11 14:03 
GeneralRe: MVC Areas - Home Controller naming conflict Pin
Richard MacCutchan11-Dec-11 22:26
mveRichard MacCutchan11-Dec-11 22:26 
QuestionSchema importer extension and target type ReadXml method ???? Pin
devboycpp11-Dec-11 7:48
devboycpp11-Dec-11 7:48 
QuestionBulk file uplaod from a folder Pin
yesu prakash10-Dec-11 0:45
yesu prakash10-Dec-11 0:45 
AnswerRe: Bulk file uplaod from a folder Pin
raju melveetilpurayil10-Dec-11 15:57
professionalraju melveetilpurayil10-Dec-11 15:57 
QuestionHOW TO AVOID MASTER PAGE REFRESH -WHEN MENU ITEM IS CLICKED-NEED HELP Pin
Member 32222648-Dec-11 17:57
Member 32222648-Dec-11 17:57 
Hi,
In master page i have header,menu,content placeholder and footer.On click of each menu items the header and footer are refreshing.i had enclosed the code and css file.

The header and footer must be fixed only the contents must change.Need help.

IFrame makes performance issues.



<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Main.master.cs" Inherits="Main" %>
 
<%@ Register Src="~/Menu.ascx" TagName="HeaderMenu" TagPrefix="uc1" %>
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
<html xmlns="http://www.w3.org/1999/xhtml">
 
<head id="Head1" runat="server">
 
<title>Untitled Page</title>
 

<link href="StyleSheet.css" rel="stylesheet" type="text/css" />
 
</head>
 
<body>
 
<form id="form1" runat="server">
 
<table border="0" cellspacing="0" cellpadding="0" width="100%" align="center">
           <%-- <tr>
                <td>
                    <table id="Table1" border="0" cellpadding="0" cellspacing="0">
                        <tr>
                            <td id="headerleft">
                                <img alt="left" src="Images/PortalBanner_Left.gif"/>
                            </td>
                            <td id="Td1" class="bannerimg">
                                <img alt="" src="Images/Logon_Header_Image_SCF3.jpg" style="width:450px;height:50px" />
                            </td>
                            <td id="headerright">
                                <img alt="right" src="Images/PortalBanner_right.gif" />
                            </td>
                        </tr>
                    </table>
                    <table class="bannerimg" border="0" width="100%">
                        <tr style="font-size:small; width: auto; ">
                            <td style="text-align: left; padding-removed 10px">
                                <asp:Label ID="lblWelcome" runat="server" Text="Welcome " CssClass="hrefClass"></asp:Label> 
                                <asp:Label ID="lblUser" runat="server" CssClass="hrefClass"></asp:Label>
                            </td>
                           
                            <td style="width: auto; text-align: right;">
                                <asp:LinkButton ID="lnHome" runat="server" class="hrefClass" CausesValidation="false" >Home</asp:LinkButton> 
                                
                                <asp:LinkButton ID="lnLogout" runat="server" class="hrefClass" 
                                    CausesValidation="false"  >Logout</asp:LinkButton>
                            </td>
                        </tr>
                    </table>
                    </td>
                    </tr>--%>
<div id="header">
 
<p><a href="http://blog.dampee.be/">Techspace</a>
 
<img src="Images/Logon_Header_Image_SCF3.jpg" alt=""/>
 

</p>
 

<span>About technology</span>
 
</div>
 
<tr>
<td colspan="3">
<div id="menu">
 
<uc1:HeaderMenu id="HeaderMenu1"  runat="server"></uc1:HeaderMenu>
 
</div>
</td>
</tr>
 
<tr>
                <td colspan="3" style="vertical-align: top; height:600px; width: 100%; background-color: White;">
<div id="content">
 
 <div class="middle_blk">
 
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
 
</asp:ContentPlaceHolder>
 
</div>
 
</div>
 
</td>
</tr>
</table>
<div id="footer">
 
<div class="footer_blk">
 
<div class="middle_blk">
 
<img src="Images/PoweredByASPNET.gif" alt="Powered by ASP.NET!" />
 
</div>
 
</div>
 
</div>
 
</form>
 
</body>
 
</html>


Thanks
S.Guhananth
AnswerRe: HOW TO AVOID MASTER PAGE REFRESH -WHEN MENU ITEM IS CLICKED-NEED HELP Pin
uspatel10-Dec-11 1:52
professionaluspatel10-Dec-11 1:52 
GeneralRe: HOW TO AVOID MASTER PAGE REFRESH -WHEN MENU ITEM IS CLICKED-NEED HELP Pin
Member 322226411-Dec-11 5:39
Member 322226411-Dec-11 5:39 
AnswerRe: HOW TO AVOID MASTER PAGE REFRESH -WHEN MENU ITEM IS CLICKED-NEED HELP Pin
Jitendra Parida - Jeetu12-Dec-11 18:45
Jitendra Parida - Jeetu12-Dec-11 18:45 
GeneralRe: HOW TO AVOID MASTER PAGE REFRESH -WHEN MENU ITEM IS CLICKED-NEED HELP Pin
Member 322226418-Dec-11 18:53
Member 322226418-Dec-11 18:53 
GeneralRe: HOW TO AVOID MASTER PAGE REFRESH -WHEN MENU ITEM IS CLICKED-NEED HELP Pin
Jitendra Parida - Jeetu18-Dec-11 22:14
Jitendra Parida - Jeetu18-Dec-11 22:14 
QuestionAttach an editor in as aspx page Pin
MalarGayu8-Dec-11 14:32
MalarGayu8-Dec-11 14:32 
AnswerRe: Attach an editor in as aspx page Pin
MalarGayu8-Dec-11 17:28
MalarGayu8-Dec-11 17:28 
GeneralRe: Attach an editor in as aspx page Pin
raju melveetilpurayil10-Dec-11 15:54
professionalraju melveetilpurayil10-Dec-11 15:54 
GeneralRe: Attach an editor in as aspx page Pin
MalarGayu11-Dec-11 9:02
MalarGayu11-Dec-11 9:02 
GeneralRe: Attach an editor in as aspx page [Link Updated] Pin
raju melveetilpurayil11-Dec-11 12:48
professionalraju melveetilpurayil11-Dec-11 12:48 
GeneralRe: Attach an editor in as aspx page Pin
MalarGayu11-Dec-11 12:51
MalarGayu11-Dec-11 12:51 
GeneralRe: Attach an editor in as aspx page Pin
MalarGayu11-Dec-11 14:02
MalarGayu11-Dec-11 14:02 
QuestionAmbiguous propertiy Pin
treuveni8-Dec-11 2:54
treuveni8-Dec-11 2:54 
AnswerRe: Ambiguous propertiy Pin
R. Giskard Reventlov8-Dec-11 3:31
R. Giskard Reventlov8-Dec-11 3:31 
GeneralRe: Ambiguous propertiy Pin
treuveni11-Dec-11 22:14
treuveni11-Dec-11 22:14 
QuestionProblem in filling drop down list Pin
Jain Vijay7-Dec-11 19:38
Jain Vijay7-Dec-11 19:38 
AnswerRe: Problem in filling drop down list Pin
Blue_Boy7-Dec-11 23:03
Blue_Boy7-Dec-11 23:03 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.