Hi I am using MasterPages.master to create template to be used on the default.aspx. When I create a custom Contentplace holder, in the Design Mode I can write whatever I want in the Contentplace holder, and do a preview on it and I am not able to see a thing.
When I open the Source Code and I type within the html tages, and then preview in the browser I am able to see the context that I added. I am not able to figure out what the problem is. I am using VS 2008 express edition.
Example is here:
Design View Text Added to the Content View was Different:
This is the default Content page. Let me keep on typing till you can
see all of this. Can you see all of this or not. This does not work at all in preview.
Source View:
<%@ Page Language="C#" MasterPageFile ="~/MasterPage.master" %>
<asp:Content ID="Content1" runat="server"
contentplaceholderid="ContentPlaceHolder1">
This is the default Content page. Let me keep on typing till you can see all of this. Can you see all of this or not.
</asp:Content>
I cannot figure the problem out.
AnshumanT