Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Ramprasad 15 posts 116 karma points
    Aug 25, 2016 @ 11:49
    Ramprasad
    0

    How should i able to create new generic text pages and link to them throughout the site?

    How should i able to create new generic text pages and link to them throughout the site?

  • David Peck 687 posts 1863 karma points c-trib
    Aug 25, 2016 @ 13:25
    David Peck
    0

    You might want to check out Umbraco.TV if you're not sure how to create content and edit content types.

  • Ramprasad 15 posts 116 karma points
    Aug 25, 2016 @ 14:16
    Ramprasad
    0

    Hi David,

    How do i call a Content/Page in another Content/Page using Link picker in Umbraco?

  • David Peck 687 posts 1863 karma points c-trib
    Aug 25, 2016 @ 14:32
    David Peck
    0

    It's probably returning an Id as a string or an int. You might want to check, but if so:

    var item = Model.Content.GetPropertyValue<int>("myLinkedPage");
    var linkedPage = Umbraco.Content(item);
    
    <a href='@item.Url'>@item.Name</a>
    
  • Ramprasad 15 posts 116 karma points
    Aug 25, 2016 @ 14:57
    Ramprasad
    0

    It's not working David. Now i need to call a newsample page. enter image description here

Please Sign in or register to post replies

Write your reply to:

Draft