This is Interesting: Free Magazines for Graphics designers and webmasters  


Home > Archive > Microsoft Publisher > May 2007 > form funtions





You are viewing an archived Text-only version of the thread. To view this thread in it's original format and/or if you want to reply to this thread please [click here]

Author form funtions
ladalang

2007-05-06, 6:17 pm

I'm using Publisher 2003 and I noticed in forms using

list box

and then going to

form properties

I have the option of sending to a program from my ISP. Then Publisher gives
me an example of the program under action and then I have the choice of Get
and Post.

Below that under hidden fields I see that I can add values.

Can anyone tell me how to actually use this function? My host company
supports front page extensions.

What does "Get" and "Post" actually mean?

I'm wondering what type of "program" Publsiher is referring to. The example
says ispscript.cgi. I don't know what that's trying to say. The CGI's I
have from my host are forum and chat and maybe more.

I'm trying to take a key word and provide a definition. Using the list form
to allow them to selct that key word. Also select multiple key words and
then display all of their meanings. Is that what this was intended to do?

Thanks

Joyce
ladalang

2007-05-06, 6:17 pm

I just checked and I have a database funtion provided by my host company. So
am I putting the work into my forms on Publisher than some how integrating
them with my host or am I creating them through the host company using their
script. What is is the best way and how do I make the two systems, Publisher
forms and the host company database work together?

"ladalang" wrote:

> I'm using Publisher 2003 and I noticed in forms using
>
> list box
>
> and then going to
>
> form properties
>
> I have the option of sending to a program from my ISP. Then Publisher gives
> me an example of the program under action and then I have the choice of Get
> and Post.
>
> Below that under hidden fields I see that I can add values.
>
> Can anyone tell me how to actually use this function? My host company
> supports front page extensions.
>
> What does "Get" and "Post" actually mean?
>
> I'm wondering what type of "program" Publsiher is referring to. The example
> says ispscript.cgi. I don't know what that's trying to say. The CGI's I
> have from my host are forum and chat and maybe more.
>
> I'm trying to take a key word and provide a definition. Using the list form
> to allow them to selct that key word. Also select multiple key words and
> then display all of their meanings. Is that what this was intended to do?
>
> Thanks
>
> Joyce

Mike Koewler

2007-05-06, 6:17 pm


> Below that under hidden fields I see that I can add values.


Hidden fields, for the most part are those that are not displayed but
used. For instance, a redirect that tells the computer to go to a
certain page after submitting the form's data.
>
> Can anyone tell me how to actually use this function? My host company
> supports front page extensions.
>
> What does "Get" and "Post" actually mean?


Get generally means to retrieve data, post is to send data. Usually, one
uses a Post method to send a form. A "Get" might be used to retrieve a
list of pages that have a term defined in a search.
>
> I'm wondering what type of "program" Publsiher is referring to. The example
> says ispscript.cgi. I don't know what that's trying to say. The CGI's I
> have from my host are forum and chat and maybe more.


The script that understands what to do with the answers in the form. It
processes it and sends it the defined person's e-mail address.
>
> I'm trying to take a key word and provide a definition. Using the list form
> to allow them to selct that key word. Also select multiple key words and
> then display all of their meanings. Is that what this was intended to do?


No, but if you are very good at coding, and have a DB, you could do
this. You could also do it by using a link in a form so that if someone
selects May Day and clicks on it, it would go to a specific web page.
Generally, forms are for collecting data. Or if you had something
similar to a search engine, something that indexes your site and lists
definitions, then you could use a "Get" to retrieve the answer. But this
would not be a simple task.

Mike
>
> Thanks
>
> Joyce

ladalang

2007-05-06, 6:17 pm

so if I added the definitions in the hidden fields to correspond with the
words how do you actually make it work? I tried it and of course it gave me
an error message saying I needed the ISP program.

Can you explain to me how Publsiher intended this funtionality to work?
From your answer it sounds like it's offered but really doesn't work. Can
you give me an example of a situation where the hidden data has actually
worked? It seems really simple based on how Publisher has it set up but
based on your answer is not.

"Mike Koewler" wrote:

>
>
> Hidden fields, for the most part are those that are not displayed but
> used. For instance, a redirect that tells the computer to go to a
> certain page after submitting the form's data.
>
> Get generally means to retrieve data, post is to send data. Usually, one
> uses a Post method to send a form. A "Get" might be used to retrieve a
> list of pages that have a term defined in a search.
>
> The script that understands what to do with the answers in the form. It
> processes it and sends it the defined person's e-mail address.
>
> No, but if you are very good at coding, and have a DB, you could do
> this. You could also do it by using a link in a form so that if someone
> selects May Day and clicks on it, it would go to a specific web page.
> Generally, forms are for collecting data. Or if you had something
> similar to a search engine, something that indexes your site and lists
> definitions, then you could use a "Get" to retrieve the answer. But this
> would not be a simple task.
>
> Mike
>

Mike Koewler

2007-05-06, 6:17 pm

Joyce,

Take a look at WrenZoom. http://www.wrensoft.com/

Mike

ladalang wrote:
[color=darkred]
> I just checked and I have a database funtion provided by my host company. So
> am I putting the work into my forms on Publisher than some how integrating
> them with my host or am I creating them through the host company using their
> script. What is is the best way and how do I make the two systems, Publisher
> forms and the host company database work together?
>
> "ladalang" wrote:
>
>
Mike Koewler

2007-05-06, 6:17 pm

Joyce,

Here's an example of a hidden field:
<input type="hidden" name="Redirect"
value="http://www.hamiltoncountyfair.com/success.html">

> so if I added the definitions in the hidden fields to correspond with
> the words how do you actually make it work?


You don't. TBO, I'm not sure what function of Pub you are talking about,
as I know very little about it, per se. Nor do I know exactly what you
are hoping to do. If the idea is to have a list of words that someone
can one from and then the definition comes up, you basically are going
to need something, as I explained, like a search engine. A long way home
would be to add a hyperlink to each word. A shortcut would be to use a
script that would parse a DB and return the answer. That's likely to
involve PHP or asp. I don't know if Pub supports PHP subroutines (they
would have to be added as either a code fragment or to the page source.

Mike

ladalang wrote:
[color=darkred]
> so if I added the definitions in the hidden fields to correspond with the
> words how do you actually make it work? I tried it and of course it gave me
> an error message saying I needed the ISP program.
>
> Can you explain to me how Publsiher intended this funtionality to work?
> From your answer it sounds like it's offered but really doesn't work. Can
> you give me an example of a situation where the hidden data has actually
> worked? It seems really simple based on how Publisher has it set up but
> based on your answer is not.
>
> "Mike Koewler" wrote:
>
>
ladalang

2007-05-06, 6:17 pm

it's frustrating because it looks like it would work.. I'll do some
searching on the web and see what else I can come up with. Maybe someone who
knows Publisher and this function will respond.

"Mike Koewler" wrote:

> Joyce,
>
> Here's an example of a hidden field:
> <input type="hidden" name="Redirect"
> value="http://www.hamiltoncountyfair.com/success.html">
>
>
> You don't. TBO, I'm not sure what function of Pub you are talking about,
> as I know very little about it, per se. Nor do I know exactly what you
> are hoping to do. If the idea is to have a list of words that someone
> can one from and then the definition comes up, you basically are going
> to need something, as I explained, like a search engine. A long way home
> would be to add a hyperlink to each word. A shortcut would be to use a
> script that would parse a DB and return the answer. That's likely to
> involve PHP or asp. I don't know if Pub supports PHP subroutines (they
> would have to be added as either a code fragment or to the page source.
>
> Mike
>
> ladalang wrote:
>
>

DavidF

2007-05-06, 6:17 pm

I don't think you are understanding what forms are all about. A viewer fills
them out, submits them, and the information is sent to you. Here is a
reference about forms in Publisher:
http://msmvps.com/blogs/dbartosik/a...1/07/80564.aspx

I have no idea of how to do what you want to do, but it isn't with a form.

DavidF

"ladalang" <ladalang@discussions.microsoft.com> wrote in message
news:DCDB55FF-6B13-4231-80EC-3F4E9021C0BF@microsoft.com...[color=darkred]
> it's frustrating because it looks like it would work.. I'll do some
> searching on the web and see what else I can come up with. Maybe someone
> who
> knows Publisher and this function will respond.
>
> "Mike Koewler" wrote:
>


Rob Giordano \(Crash\)

2007-05-06, 10:15 pm

If your host has FP extensions installed (and working) on your web, you can
use Publisher (FP's) form handler you don't use CGI or the host's other
handler.


"ladalang" <ladalang@discussions.microsoft.com> wrote in message
news:4CD28A53-2D65-4EA4-934D-BBFDCD036686@microsoft.com...
|I just checked and I have a database funtion provided by my host company.
So
| am I putting the work into my forms on Publisher than some how integrating
| them with my host or am I creating them through the host company using
their
| script. What is is the best way and how do I make the two systems,
Publisher
| forms and the host company database work together?
|
| "ladalang" wrote:
|
| > I'm using Publisher 2003 and I noticed in forms using
| >
| > list box
| >
| > and then going to
| >
| > form properties
| >
| > I have the option of sending to a program from my ISP. Then Publisher
gives
| > me an example of the program under action and then I have the choice of
Get
| > and Post.
| >
| > Below that under hidden fields I see that I can add values.
| >
| > Can anyone tell me how to actually use this function? My host company
| > supports front page extensions.
| >
| > What does "Get" and "Post" actually mean?
| >
| > I'm wondering what type of "program" Publsiher is referring to. The
example
| > says ispscript.cgi. I don't know what that's trying to say. The CGI's
I
| > have from my host are forum and chat and maybe more.
| >
| > I'm trying to take a key word and provide a definition. Using the list
form
| > to allow them to selct that key word. Also select multiple key words
and
| > then display all of their meanings. Is that what this was intended to
do?
| >
| > Thanks
| >
| > Joyce


Sponsored Links


Copyright 2003 - 2008 forum4designers.com  Software forum  Computer Hardware reviews