Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
I have 2 pages in Umbraco 1 page is Practices which is a normal page it has many fiels in it like practicename practiceLname
2 page is footer which is Partial page
so now i need to display this practicename
field value in Footer page which is Partial so how can io do that
Your partial view should have access to the pages Model (if you have inherited UmbracoViewPage, so you should just be able to do
@if (Model.HasValue("practicename")) { @Model.Value("practicename") }
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Render a field of pages in partial view
I have 2 pages in Umbraco 1 page is Practices which is a normal page it has many fiels in it like practicename practiceLname
2 page is footer which is Partial page
so now i need to display this practicename
field value in Footer page which is Partial so how can io do that
Your partial view should have access to the pages Model (if you have inherited UmbracoViewPage, so you should just be able to do
is working on a reply...