Web-Site Link

  • Thread starter Thread starter Guest
  • Start date Start date
You type it as:

http://www.yourdomainname.com


--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
Select the text, right click, choose Insert > Hyperlink, then choose the
"email" link in the dialogue, put the address in and click OK.
 
The OP didn't ask about an email address. Read it again.

"How do I put a link into web-site to e-mail site to someone else?"
--
===
Tom "Pepper" Willett
Microsoft MVP - FrontPage
---
About FrontPage 2003:
http://office.microsoft.com/home/office.aspx?assetid=FX01085802
===
| that's a web address not email....
|
| in the code it would be <a href="mailto:[email protected]">Email me</a>
|
| but through the GUI, go to Insert > Hyperlink
|
| | > You type it as:
| >
| > http://www.yourdomainname.com
| >
| >
| > --
| > ==============================================
| > Thomas A. Rowe (Microsoft MVP - FrontPage)
| > ==============================================
| > If you feel your current issue is a results of installing
| > a Service Pack or security update, please contact
| > Microsoft Product Support Services:
| > http://support.microsoft.com
| > If the problem can be shown to have been caused by a
| > security update, then there is usually no charge for the call.
| > ==============================================
| >
| > | >> How do I put a link into web-site to e-mail site to someone else?
| >
| >
|
|
 
Or if you are into writing code, place this into the HTML

<form name="eMailer" action="">
<b>E-Mail this link to a friend</b><br>
Enter recipient's e-mail:<br>
<input type="text" name="address" size="30"><br>
<input type="button" value="Send this URL" onClick="mailThisUrl();">
</form>

and add this code in a linked external JS file or between
<script></script>
function mailThisUrl()
{
var subj = "I thought this might interest you...";
var text = "Here is an interesting Website: "
var content = new Array()
content[0] = "mailto:"
content[1] = document.eMailer.address.value
content[2] = "?subject="
content[3] = subj
content[4] = "&body="
content[5] = text
content[6] = parent.document.title
content[7] = " ("
content[8] = parent.location
content[9] = ")"
content = content.join("")
if (checkEmailAddress(document.eMailer.address))
window.location = content
}
 
I "think" the op is talking about emailing a page to someone?...one of those Email This Page things?



| The OP didn't ask about an email address. Read it again.
|
| "How do I put a link into web-site to e-mail site to someone else?"
| --
| ===
| Tom "Pepper" Willett
| Microsoft MVP - FrontPage
| ---
| About FrontPage 2003:
| http://office.microsoft.com/home/office.aspx?assetid=FX01085802
| ===
| | | that's a web address not email....
| |
| | in the code it would be <a href="mailto:[email protected]">Email me</a>
| |
| | but through the GUI, go to Insert > Hyperlink
| |
| | | | > You type it as:
| | >
| | > http://www.yourdomainname.com
| | >
| | >
| | > --
| | > ==============================================
| | > Thomas A. Rowe (Microsoft MVP - FrontPage)
| | > ==============================================
| | > If you feel your current issue is a results of installing
| | > a Service Pack or security update, please contact
| | > Microsoft Product Support Services:
| | > http://support.microsoft.com
| | > If the problem can be shown to have been caused by a
| | > security update, then there is usually no charge for the call.
| | > ==============================================
| | >
| | > | | >> How do I put a link into web-site to e-mail site to someone else?
| | >
| | >
| |
| |
|
|
 
Back
Top