Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx_beginners thread: multiple HyperLinkColumn Targets


Message #1 by "cal c" <callisto137@h...> on Wed, 20 Nov 2002 11:35:09 +0000
Hi all,

Does anyone know if its possible to load two frames containing different 
pages on a page just by clicking one hyperlinkcolumn target?

Any help would be great,
Thanks
Clover

_________________________________________________________________
The new MSN 8: advanced junk mail protection and 2 months FREE* 
http://join.msn.com/?page=features/junkmail

Message #2 by "Mark Harwood" <mark@h...> on Wed, 20 Nov 2002 19:33:36 -0000
Point the hyperlink to a frame set containing the two pages.

Of course that's the easy way, it depends if you want to load specific
pages into the frames based on which link was pressed.

I haven't tried it but I guess you could construct your link with a
querystring defining the pages you want loaded;

Href="framesetpage.htm?frame1=page_x.aspx&frame2=page_y.aspx"

Then in the frame set you'd have two default pages that would redirect
based on reading the contents of the querystring.


So in defaultpage1.aspx

Response.redirect = request.querystring("frame1")

In defaultpage2.aspx

Response.redirect = request.querystring("frame2")


Like I say that is off the top of the old head....I think it should
work...

Please let me know

Happy coding

Mark Harwood





-----Original Message-----
From: cal c [mailto:callisto137@h...] 
Sent: 20 November 2002 11:35
To: aspx_beginners
Subject: [aspx_beginners] multiple HyperLinkColumn Targets

Hi all,

Does anyone know if its possible to load two frames containing different

pages on a page just by clicking one hyperlinkcolumn target?

Any help would be great,
Thanks
Clover

_________________________________________________________________
The new MSN 8: advanced junk mail protection and 2 months FREE* 
http://join.msn.com/?page=features/junkmail




  Return to Index