WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

Passing URL parameters to a FrontPage form..

 
   Home -> Office other -> Client RSS
Next:  FP file to be inserted into email using access fi..  
Author Message
Robert McClain

External


Since: Aug 04, 2008
Posts: 2



(Msg. 1) Posted: Mon Aug 04, 2008 11:54 am
Post subject: Passing URL parameters to a FrontPage form..
Archived from groups: microsoft>public>frontpage>client (more info?)

Is it possibly to populate a hidden field on a FrontPage form with data that
is passed via the URL. For example:

http://www.whatever.com/test.asp?ID="12345"

Which would then automatically populate the hidden field (ID) with the value
12345.

Thanks!
Back to top
Login to vote
Thomas A. Rowe

External


Since: Aug 23, 2003
Posts: 2691



(Msg. 2) Posted: Mon Aug 04, 2008 3:01 pm
Post subject: Re: Passing URL parameters to a FrontPage form.. [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On the form page do the following:

<input type="hidden" name="ID" value="<%=Request.QueryString("ID")%>">


--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
http://www.Ecom-Data.com
==============================================


"Robert McClain" <RobertMcClain.RemoveThis@discussions.microsoft.com> wrote in message
news:F3148C57-4C08-46D2-B576-48305D8E0C33@microsoft.com...
> Is it possibly to populate a hidden field on a FrontPage form with data that
> is passed via the URL. For example:
>
> http://www.whatever.com/test.asp?ID="12345"
>
> Which would then automatically populate the hidden field (ID) with the value
> 12345.
>
> Thanks!
Back to top
Login to vote
Robert McClain

External


Since: Aug 04, 2008
Posts: 2



(Msg. 3) Posted: Mon Aug 04, 2008 3:01 pm
Post subject: Re: Passing URL parameters to a FrontPage form.. [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Thank you...it works perfectly!


"Thomas A. Rowe" wrote:

> On the form page do the following:
>
> <input type="hidden" name="ID" value="<%=Request.QueryString("ID")%>">
>
>
> --
> ==============================================
> Thomas A. Rowe
> Microsoft MVP - FrontPage
> http://www.Ecom-Data.com
> ==============================================
>
>
> "Robert McClain" <RobertMcClain RemoveThis @discussions.microsoft.com> wrote in message
> news:F3148C57-4C08-46D2-B576-48305D8E0C33@microsoft.com...
> > Is it possibly to populate a hidden field on a FrontPage form with data that
> > is passed via the URL. For example:
> >
> > http://www.whatever.com/test.asp?ID="12345"
> >
> > Which would then automatically populate the hidden field (ID) with the value
> > 12345.
> >
> > Thanks!
>
>
>
Back to top
Login to vote
Rod Voyce

External


Since: Sep 24, 2009
Posts: 1



(Msg. 4) Posted: Thu Sep 24, 2009 11:04 am
Post subject: Passing URL parameters to a FrontPage form.. - Thomas A. Rowe [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I saw that maybe you learned how to do this but I can't see the reply of Thomas - could you do me a favour and send it to me. BIG THANKS



RobertMcClai wrote:

Re: Passing URL parameters to a FrontPage form..
04-Aug-08

Thank you...it works perfectly!


"Thomas A. Rowe" wrote:

EggHeadCafe - Software Developer Portal of Choice
WPF And The Model View View Model Pattern
http://www.eggheadcafe.com/tutorials/aspnet/ec832ac7-6e4c-4ea8-81ab-73...3da3425
Back to top
Login to vote
Tom Willett

External


Since: Jun 26, 2009
Posts: 10



(Msg. 5) Posted: Thu Sep 24, 2009 1:50 pm
Post subject: Re: Passing URL parameters to a FrontPage form.. - Thomas A. Rowe [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Chances are that with a post over a year old, most likely the original
poster is not going to come back and see this. He would have no reason to.
--
Tom [Pepper] Willett
Microsoft MVP - FrontPage Since 1997
---------------------------
<Rod Voyce> wrote in message news:200992414454rodvoyce@logical-office.com...
:I saw that maybe you learned how to do this but I can't see the reply of
Thomas - could you do me a favour and send it to me. BIG THANKS
:
:
:
: RobertMcClai wrote:
:
: Re: Passing URL parameters to a FrontPage form..
: 04-Aug-08
:
: Thank you...it works perfectly!
:
:
: "Thomas A. Rowe" wrote:
:
: EggHeadCafe - Software Developer Portal of Choice
: WPF And The Model View View Model Pattern
:
http://www.eggheadcafe.com/tutorials/aspnet/ec832ac7-6e4c-4ea8-81ab-73...3da3425
Back to top
Login to vote
Tom Willett

External


Since: Jun 26, 2009
Posts: 10



(Msg. 6) Posted: Thu Sep 24, 2009 1:51 pm
Post subject: Re: Passing URL parameters to a FrontPage form.. - Thomas A. Rowe [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

BTW, Thomas A. Rowe is no longer posting.
--
Tom [Pepper] Willett
Microsoft MVP - FrontPage Since 1997
---------------------------
<Rod Voyce> wrote in message news:200992414454rodvoyce@logical-office.com...
:I saw that maybe you learned how to do this but I can't see the reply of
Thomas - could you do me a favour and send it to me. BIG THANKS
:
:
:
: RobertMcClai wrote:
:
: Re: Passing URL parameters to a FrontPage form..
: 04-Aug-08
:
: Thank you...it works perfectly!
:
:
: "Thomas A. Rowe" wrote:
:
: EggHeadCafe - Software Developer Portal of Choice
: WPF And The Model View View Model Pattern
:
http://www.eggheadcafe.com/tutorials/aspnet/ec832ac7-6e4c-4ea8-81ab-73...3da3425
Back to top
Login to vote
Kathleen Anderson

External


Since: Apr 01, 2008
Posts: 186



(Msg. 7) Posted: Thu Sep 24, 2009 3:15 pm
Post subject: Re: Passing URL parameters to a FrontPage form.. - Thomas A. Rowe [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I found Thomas' answer on Google Groups:

On the form page do the following:

<input type="hidden" name="ID" value="<%=Request.QueryString("ID")%>">


Here's the thread:
http://groups.google.com/group/microsoft.public.frontpage.client/brows...hread/t




--

~ Kathleen Anderson
Microsoft MVP - Expression Web
Spider Web Woman Designs
Expression Web Resources: http://www.spiderwebwoman.com/xweb/
Expression Web Wiki: http://expression-web-wiki.com/
FrontPage Resources: http://www.spiderwebwoman.com/resources/
Please reply to the newsgroup for the benefit of others


"Tom Willett" <tom DeleteThis @youreadaisyifyoudo.com> wrote in message
news:eT%235VfUPKHA.1796@TK2MSFTNGP02.phx.gbl...
> Chances are that with a post over a year old, most likely the original
> poster is not going to come back and see this. He would have no reason to.
> --
> Tom [Pepper] Willett
> Microsoft MVP - FrontPage Since 1997
> ---------------------------
> <Rod Voyce> wrote in message
> news:200992414454rodvoyce@logical-office.com...
> :I saw that maybe you learned how to do this but I can't see the reply of
> Thomas - could you do me a favour and send it to me. BIG THANKS
> :
> :
> :
> : RobertMcClai wrote:
> :
> : Re: Passing URL parameters to a FrontPage form..
> : 04-Aug-08
> :
> : Thank you...it works perfectly!
> :
> :
> : "Thomas A. Rowe" wrote:
> :
> : EggHeadCafe - Software Developer Portal of Choice
> : WPF And The Model View View Model Pattern
> :
> http://www.eggheadcafe.com/tutorials/aspnet/ec832ac7-6e4c-4ea8-81ab-73...3da3425
>
>
Back to top
Login to vote
Jon Spivey

External


Since: Sep 25, 2009
Posts: 2



(Msg. 8) Posted: Fri Sep 25, 2009 2:05 pm
Post subject: Re: Passing URL parameters to a FrontPage form.. - Thomas A. Rowe [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

What happened to him Tom? Haven't been around here for a while.

Cheers,
Jon

"Tom Willett" <tom.TakeThisOut@youreadaisyifyoudo.com> wrote in message
news:OWXhjfUPKHA.5108@TK2MSFTNGP02.phx.gbl...
> BTW, Thomas A. Rowe is no longer posting.
> --
> Tom [Pepper] Willett
> Microsoft MVP - FrontPage Since 1997
> ---------------------------
> <Rod Voyce> wrote in message
> news:200992414454rodvoyce@logical-office.com...
> :I saw that maybe you learned how to do this but I can't see the reply of
> Thomas - could you do me a favour and send it to me. BIG THANKS
> :
> :
> :
> : RobertMcClai wrote:
> :
> : Re: Passing URL parameters to a FrontPage form..
> : 04-Aug-08
> :
> : Thank you...it works perfectly!
> :
> :
> : "Thomas A. Rowe" wrote:
> :
> : EggHeadCafe - Software Developer Portal of Choice
> : WPF And The Model View View Model Pattern
> :
> http://www.eggheadcafe.com/tutorials/aspnet/ec832ac7-6e4c-4ea8-81ab-73...3da3425
>
>
Back to top
Login to vote
Display posts from previous:   
       Home -> Office other -> Client All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
 Office
  Office Other
 Security
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET |
  • IT Support