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
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