plz solve my problem of master pages

Reply

Join Date: Oct 2007
Posts: 78
Reputation: navi17 is an unknown quantity at this point 
Solved Threads: 5
navi17 navi17 is offline Offline
Junior Poster in Training

plz solve my problem of master pages

 
0
  #1
Nov 5th, 2007
hi...
i have three pages in my website
site.master
default.aspx
home.aspx

in master page
there is a link button named home...
the following is the coding of all three pages...
site.master
<html>
<head>
<link rel="stylesheet" href="StyleSheet.css" type="text/css" />
</head>
<body>
<form id="Form1" runat="server">
<div>
<table class="main" cellspacing="0" cellpadding="2">
<tr class="header">
<td colspan="2" class="header"/>
</tr>
<tr valign="top">
<td class="sidebar" rowspan="2">
<a href="home.aspx">home</a><br/>
</td>
<td class="body">
<asp:contentplaceholder id="cph" runat="server">
<h3>Welcome to my first website!</h3>
We have an enormous selection of quality flowers and seeds, available for shipping to any location worldwide. Let us handle all you gardening needs!
</asp:contentplaceholder>
</td>
</tr>
<tr>
<td class="footer">
<asp:label id="Footer" font-italic="true" text="Copyright Microsoft 2003" runat="server" />
</td>
</tr>
</table>
</div>
</form>
</body>
</html>
**************************************************
home.aspx
<%@ page language="C#" masterpagefile="~/Site.master" %>

<asp:content id="Content1" contentplaceholderid="cph" runat="server">
With sunshine, water, and careful tending, roses will bloom several times in a season.
</asp:content>
**********************************************************************
Default.aspx
<%@ page language="C#" masterpagefile="~/Site.master" %>

***********************************
problem is that when i prss f5. dafault page is executed any nothing is appear on output...
and when i make home page as a start page only home link is displayed...
wat the hell is this...
can any body help me?
Reply With Quote Quick reply to this message  
Join Date: Feb 2005
Posts: 1,181
Reputation: hollystyles will become famous soon enough hollystyles will become famous soon enough 
Solved Threads: 67
hollystyles's Avatar
hollystyles hollystyles is offline Offline
Veteran Poster

Re: plz solve my problem of master pages

 
0
  #2
Nov 5th, 2007
The content place holder in site.master should be empty of any html, that's where the default and home pages will place their content.

Move the html in the site.master OUT from between the content place holder cph.

Add the:<asp:content id="Content1" contentPlaceHolderId="cph" runat="server">
</asp:content>
tags to the deafult.aspx page as it is missing.
Last edited by hollystyles; Nov 5th, 2007 at 11:01 am.
==========================================
Yadda yadda yadda...
Web junky, fevered monkey
Reply With Quote Quick reply to this message  
Join Date: Oct 2007
Posts: 78
Reputation: navi17 is an unknown quantity at this point 
Solved Threads: 5
navi17 navi17 is offline Offline
Junior Poster in Training

Re: plz solve my problem of master pages

 
0
  #3
Nov 7th, 2007
no its stil not working...........
same problem again occurs....
which page would i select as start page
eithe home or default?
Reply With Quote Quick reply to this message  
Join Date: Feb 2005
Posts: 1,181
Reputation: hollystyles will become famous soon enough hollystyles will become famous soon enough 
Solved Threads: 67
hollystyles's Avatar
hollystyles hollystyles is offline Offline
Veteran Poster

Re: plz solve my problem of master pages

 
0
  #4
Nov 7th, 2007
Whichever one you want to be the main page. It's only for debugging anyway so that VS knows which page you want to start the app at.

Please post your full code as it is now in code tags please. Otherwise I can't help.
==========================================
Yadda yadda yadda...
Web junky, fevered monkey
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:




Views: 1238 | Replies: 3
Thread Tools Search this Thread



Tag cloud for ASP.NET
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC