How to edit content pages in asp.net 2.0

  •  02-02-2006, 12:35 PM

    How to edit content pages in asp.net 2.0

    Adam
    I am creating a mini Content management application.
    All the pages in my website are derived from the master page template.
    So all the content pages have the @page directive as the first line followed by the Content Place holder tag in the code view.
    for example

    <%@ Page Language="C#" Title="Untitled Page" %>
    <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">Read the content here</contentplaceholder>

    Now my application has to read the content within the contentplace holder tag and display "Read the content here" in the editor to allow the user to edit the content and save it back to the aspx file.
    How could I do this?

    Thanks
    A
View Complete Thread