I have a form page that pass parameters to a ASP page to view crystal report which needs Date
Parameters.
I am able to pass virtually everithing I need but I don't know how to extract datepicker value for the date
range. I have the two DatePickers and they work fine, I know that I can do it with Visual Basic but some
how that dosen't work with ASP page.
I have already tried
********************************************************
<%
Dim kwd1
Dim kwd2
Dim kwd3
dim kwd4
kwd1 = Request.Form ("txtMattN"
'The text ID
kwd2 = Request.Form ("strDate1"
'Date Range Min
kwd3 = Request.Form ("strDate2"
'Date Range Max
kwd4 = Request.Form ("bgid"
'Date Range Page ID
%>
Kwd1 and kwd4 are OK. kwd2 and kwd3 do not pass the values
***********************************************************
I also tried querystring without success.
I would appeciate any help.
************************************************************************
for appDate=cdate(request("tdat1"
) to cdate(request("tdat2"
) step 1
response.write appDate & "<br>"
next
Thanks
MisterMo
Parameters.
I am able to pass virtually everithing I need but I don't know how to extract datepicker value for the date
range. I have the two DatePickers and they work fine, I know that I can do it with Visual Basic but some
how that dosen't work with ASP page.
I have already tried
********************************************************
<%
Dim kwd1
Dim kwd2
Dim kwd3
dim kwd4
kwd1 = Request.Form ("txtMattN"
kwd2 = Request.Form ("strDate1"
kwd3 = Request.Form ("strDate2"
kwd4 = Request.Form ("bgid"
%>
Kwd1 and kwd4 are OK. kwd2 and kwd3 do not pass the values
***********************************************************
I also tried querystring without success.
I would appeciate any help.
************************************************************************
for appDate=cdate(request("tdat1"
response.write appDate & "<br>"
next
Thanks
MisterMo