You may want to start here
http://msdn.microsoft.com/library/de...x/controls.asp
--
_____________________________________________
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.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________
"guy" <(E-Mail Removed)> wrote in message news:%(E-Mail Removed)...
| On this page:
|
http://www.daltongrouptrading.com/gr/index.htm
|
| I have an ActiveX calendarcontrol, 4 radio buttons, and a submit button.
|
|
|
| On clicking the submit button I would like to build and navigate to a link
| based on the calendar and radio button selection.
|
|
|
| Do I need to use ASP? Is this the easiest? Or how would you suggest I do
| this?
|
|
|
| The pseudo code for the submit button would be something like this:
|
|
|
| OnSubmitClick
|
| switch(radioButton)
|
| case ES:
|
| directory = "es/"
|
| file = "ES"
|
| case NQ:
|
| ...
|
| end switch
|
|
|
| finalLink = directory + file + "_MP_" + cal.Year.FormatLongYear
| + "-" + cal.Month + "-" + cal.Day + ".htm"
|
| GoToLink(finalLink)
|
|
|
| End
|
|
|