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?