Validation (Internet Explorer 6): Attribute 'target' is not a valid attributeof element 'frame'

  • Thread starter Thread starter fiefie.niles
  • Start date Start date
F

fiefie.niles

I converted my VS2003 ASP.Net project to VS2005.
I use frame in VS2003 with no problem like the following:
<frame name="banner" scrolling="no" noresize target="contents"
src="SPTop.htm">

In VS2005 it gave me the error: Validation (Internet Explorer 6):
Attribute 'target' is not a valid attributeof element 'frame'

How can I fix this problem ?
Thank you.
 
I suggest you remove the target attribute.
It's telling you the truth. It doesn't belong there.
 
Back
Top