In Moss 2007, sometimes we want to apply CSS through the aspx pages. Instead of including the complete css file, to write only few css we can use the PlaceHolderAdditionalPageHead content placeholder to include the custom css.
For example, the below code can be used.
<asp:Content id="Content11" runat="server" contentplaceholderid="PlaceHolderAdditionalPageHead">
<link rel="stylesheet" type="text/css" href="/_LAYOUTS/1033/STYLES/CustomCSSFileName.CSS">
</asp:Content>
For example, the below code can be used.
<asp:Content id="Content11" runat="server" contentplaceholderid="PlaceHolderAdditionalPageHead">
<link rel="stylesheet" type="text/css" href="/_LAYOUTS/1033/STYLES/CustomCSSFileName.CSS">
</asp:Content>
Malkeet,
ReplyDeleteI have a question, can we retrieve the User atrributes on sign on (Active directory values) using a webpart and using a submit button can we post values to a asp.net application outside sharepoint, you can reply me at neelbh@yahoo.com
Thank you
Bhagavan
Hi Bhagvan,
DeleteYes, we can fetch the active directory values of the signed on user. After fetching values in webpart, you can send the values using "querystring" to another asp.net application.