Posts tagged contentplaceholder
Preparing an asp.net master page for print only view – stripping out css etc
Oct 7th
Searching google turned up nothing on this so did some digging in MSDN and worked out a method of disabling all the style sheets, javascript etc to produce a text only page: 1/ Add a content block to your master page – i’ve called mine ‘cssContentHolder’ <asp:contentplaceholder id=”cssContentHolder” runat=”server”> <link rel=”stylesheet” href=”css/master.css” type=”text/css” media=”all” /> More >