vote up 1 vote down star

I am using a MasterPage in my project...

This this the link i need to place inside my ContentPlaceHolder of my Dedault.aspx page

<link href="jquery/imagebox/imagebox.css" rel="stylesheet" />

But i get a error "Element link cannot be nested within element td"

Any idea what to do?

flag

70% accept rate

1 Answer

vote up 2 vote down check

You can only place stylesheet links in the header of the document. Here's a link how to do that from a ContentPlaceholder:

http://www.odetocode.com/articles/450.aspx

Quote:

Protected Sub Page_Load(ByVal sender As Object, _
                         ByVal e As System.EventArgs)

   Dim cssLink As New HtmlLink()
   cssLink.Href = "~/styles.css"
   cssLink.Attributes.Add("rel", "stylesheet")
   cssLink.Attributes.Add("type", "text/css")
   Header.Controls.Add(cssLink)

End Sub
link|flag
Then where must i place it? Because i cant use a header in my Default.aspx page since i am using MasterPages. – Etienne Apr 6 at 18:25
Seems you can actually - I amended my answer :) – Mladen Mihajlovic Apr 6 at 18:26
@Etienne - you can use contentplaceholders in "head" element too. – TcKs Apr 6 at 18:32
@TcKs - what will the syntax be for that? – Etienne Apr 6 at 18:50
@Mladen - thanks it does work, but it placed the link inside my actual MasterPage and because of this it does not work for me. For some reason it must be at the Default.aspx level. – Etienne Apr 6 at 18:51
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.