I dont know what I am doing wrong but a simple bootstrap button on master page doesnt shows up in content page. I am including the right css on header of master page.
My master page looks like this
and content page looks like this
I don't understand what I am missing here.
The ContentPlaceHolder
in the MasterPage
gets entirely replaced by the Content
specified in the page. That anchor tag you added to the master page is just getting overwritten.
To solve this, either
ContentPlaceHolder
on the MasterPage
, making it visible on all pages that use the masterpage, orContent
tag on the page, making it visible on this page only.