Click here to Skip to main content
15,890,897 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
<frame name="frleft" id="frleft" border="false" src="frleft.asp" scrolling="auto" target="frright"></frame>


i was getting error like "UNEXPECTED TOKEN" at bthe end of hte frame...is anyother code to rectify it...kindly please help me


thanks in advance

Manikandan M
Posted

1 solution

target should be one of below
Quote:
_blank
The user agent should load the designated document in a new, unnamed window.
_self
The user agent should load the document in the same frame as the element that refers to this target.
_parent
The user agent should load the document into the immediate FRAMESET parent of the current frame. This value is equivalent to _self if the current frame has no parent.
_top
The user agent should load the document into the full, original window (thus canceling all other frames). This value is equivalent to _self if the current frame has no parent.
 
Share this answer
 
Comments
Mani Kandan 27-Jul-15 3:37am    
i cant get you....could you please explain it detail
DamithSL 27-Jul-15 22:54pm    
you have target ="frright" in your code, change it as target="_blank" or target="_self" ..

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900