can you put a e-mail sign up in publisher

K

ksman

I want to have people enter there E_mail address on my website.Can I do this
using publishe?
 
D

DavidF

You could create a form to do this. Reference: Publisher web publication
forms 101:
http://msmvps.com/blogs/dbartosik/archive/2006/01/07/80564.aspx

Reference: How to publish a Publisher web in HTTP:
http://msmvps.com/blogs/dbartosik/pages/80557.aspx

Or if you don't want to use the built-in form and the FrontPage server
extensions, and would prefer to use FTP uploading, then you could insert the
following javascript form code using the insert html code fragment tool.
(use Ctrl + V to paste). There are others out there...just google.


<FORM action=mailto:[email protected] method="post"
enctype="text/plain">
<TABLE BORDER="0" CELLSPACING="0" CELLPADDING="4" WIDTH="90%">
<TR>
<TD width="30%"><DIV align="right">
<B>Name:</B>
</DIV>
</TD>
<TD width="70%">
<INPUT type="text" name="name" size="20">
</TD>
</TR>
<TR>
<TD><DIV align="right"><B>Email:</B></DIV>
</TD>
<TD>
<INPUT type="text" name="email" size="20">
</TD>
</TR>
<TR>
<TD><DIV align="right">
<B>Comment:</B>
</DIV>
</TD>
<TD><TEXTAREA name="comment" cols="30" wrap="virtual" rows="4">
</TEXTAREA>
</TD></TR>
<TR>
<TD>&nbsp;</TD>
<TD>
<INPUT type="submit" name="submit" value="Submit">
<INPUT type="reset" name="reset" value="Reset">
</TD></TR>
</TABLE>
</FORM>



DavidF
 

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

Top