Passing form field in hyperlink parameter

  • Thread starter Thread starter jhmosow
  • Start date Start date
J

jhmosow

I have a form that uses the Microsoft Date and Time Picker Control. I
need to pass the value from this control to another page using the
hyperlink parameter. But, I don't know how to do this.

Any help is appreciated.

TIA
 
Passing any data from 1 page to another w/ a hyperlink requires use of a query string w/ the value name and value in the form of
page.htm?valuename=value

But since you are using a form you probably also want to pass all form fields (including the date/time)
So you really should be using the form data and not a query string by using something like
http://www.javascriptkit.com/script/script2/tengcalendar.shtml

--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.frontpagemvps.com/FrontPageNewsGroups/tabid/53/Default.aspx
_____________________________________________


|I have a form that uses the Microsoft Date and Time Picker Control. I
| need to pass the value from this control to another page using the
| hyperlink parameter. But, I don't know how to do this.
|
| Any help is appreciated.
|
| TIA
|
 
I am passing some recordset values already. But there are form fields
that I would also like to pass in the parameter. I do not know how to
reference these FP fields when passing the variable. For example, in
the following, I am passing EventID and EventCategoryName, which are
recordset values. The FromDate field is from the Date Picker control
on the form. I don't know how to specify this value in the parameters
using FP2k.

http://iticentral/rms/Application_e...sp?EventID=4&EventCategoryName=None&FromDate=
 
Back
Top