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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem Passing Parameters via ASP. UGH!!

Status
Not open for further replies.

bzss7x

MIS
Mar 14, 2001
17
US
Any assistance would be appreciated...

First of all this works on my development PC (XP/CR8.5) but not on our web server (NT/IIS4.0/CR8.5). DLL maybe??

The problem....

I want to pass a parameter called "shift" to a Crystal Report using ASP. The ASP page extracts the value entered with the following code:

Dim fldParm3
Dim strshift

strshift = Request.Form("shift")

Set fldParm3=session("oRpt").ParameterFields.GetItemByName("SHIFT")

Call fldParm3.SetCurrentValue(CStr(strshift),12)


The Crystal Report's Parameter is also named "shift". However, no value ever gets to Crystal. Remember that this works on one box, but not the other, so it must be either a configuration or DLL problem. Any help would be greatly appreciated. :cool:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top