Click button to change text

  • Thread starter Thread starter François
  • Start date Start date
F

François

Hi,

I am a newbie with Frontpage and web programming. I would simply like to
know what you need to do
in order to display some text (in the right pane let's say) when you click a
button (in the left pane).
If possible, I would like the page not to reload.

Thanks in advance
 
Hi Francois,

When you create the link in the left pane (frame) you'd target the right frame (pane)

<a href="text.htm" target="main" >Display Text</a>

In FP terms when you create the page click on the target button and select the right frame, normally named "main"
 
Howdy.

The usual approach is to first define a frameset. This
divides the browser window into several rectangular areas,
each with a name that you assign. Each frame displays a
different Web page.

Then, to make hyperlinks in one frame load pages into a
different frame, you assign a "target" attribute to the
hyperlink. For example:

<a href="chickens.htm" target="animals">Chickens</a>

loads the chickens.htm page into the animals frame.

In the FP GUI, you configure the target attribute by
clicking the Target Frame button in the Insert Hyperlink
dialog box.

Jim Buyens
Microsoft FrontPage MVP
http://www.interlacken.com
Author of:
*----------------------------------------------------
|\---------------------------------------------------
|| Microsoft Office FrontPage 2003 Inside Out
||---------------------------------------------------
|| Web Database Development Step by Step .NET Edition
|| Microsoft FrontPage Version 2002 Inside Out
|| Faster Smarter Beginning Programming
|| (All from Microsoft Press)
|/---------------------------------------------------
*----------------------------------------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top