Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

FP2K & Date Picker Control

Status
Not open for further replies.

riley3

Programmer
Apr 29, 2004
79
0
0
US
I've inserted the Microsoft Active X Date Picker Control from FP2K on an .asp page and it works very well. When you click on the down arrow in the text box inserted by the control a calendar pops up and you select a date and it populates the text box. The <form> name created by the Active X control is “calendar” and the ID=DTPicker1. In the <form> tag the action= is set to go to a second results.asp page so that I can test the selected results with a Response.Write. The second results.asp page looks like this:

HTML……..
<%
Response.Write(Request.Form("DTPicker1.Value"))
Response.Write "TEST Data Picker results"
%>
HTML……..

I've tried using “calendar.DTPicker1.Value” with no luck. In fact I've tried a number of parameters and things, still with no luck. Can someone tell me what the correct parameter is that you need to pass so that you can do something with the Date Picker results? Thank you for any help you may be able to give me.
rgp
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top