Hi Paul,
>
>       so sending an email link, to users on our intranet that would pull
> up the frame sets & the target anchor wont work?
>

Just been having a play.....

 <frame name="_main" src="right.cfm#course2" marginwidth="10"
marginheight="10" scrolling="auto" frameborder="0">

Works in IE5, dunno about any other browsers, so what you could so is....

Send the anchor as a URL variable, like so :
http://inhouse/default.cfm?MainPage=DesignTech/technews/Siggraph99/siggraph9
9Notes.htm&courseID=course6

And in your frameset do this....
<cfset framesource = url.MainPage>
<cfif IsDefined("url.courseid")>
        <cfset framesource = framesource&"##"url.courseid">
</cfif>
<frame NAME="MainPage" SRC="<cfoutput>#framesource#</cfoutput>"
SCROLLING="AUTO" MARGINWIDTH="0" MARGINHEIGHT="0" frameborder="NO"
bordercolor="#FFFFFF">



Give that a go and see what happens...

Regards

Stephen

------------------------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]

Reply via email to