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

Crystal Reports Viewers and ASP/HTML

Status
Not open for further replies.

Canthros

Programmer
Jul 19, 2002
12
US
Basic rundown of current situation:
To facilitate the use of dynamic pick lists/parameter lists, several of the Crystal Reports (v8.5) here are accessed by some ASP wrappers to populate the selection lists at run-time, rather than design-time. This has been working very well so far, but recent demands have produced the addition of a report with a multiple-selection list which needs to be populated at run-time.

At present, these reports are handled by using a standard HTML form, with the report file as the action on the form, akin to:
Code:
<form method=&quot;post&quot; action=&quot;report.rpt&quot;>
	<input type=&quot;hidden&quot; name=&quot;init&quot; value=&quot;actx&quot; />
	<input type=&quot;hidden&quot; name=&quot;user-servername.databasename&quot; value=&quot;********&quot; />
	<input type=&quot;hidden&quot; name=&quot;password-servername.databasename&quot; value=&quot;********&quot; />
	<input type=&quot;hidden&quot; name=&quot;promptOnRefresh&quot; value=&quot;0&quot; />
	<select name=&quot;prompt1&quot; size=&quot;10&quot; multiple=&quot;multiple&quot;>
		...
	</select>
</form>

The problem is that the viewer doesn't seem to properly handling the parameters supplied by the form's multiple-selection listbox (single-selection lists work fine).

Can anyone help me out here on what I need to do for the viewer to see all selections from the select list, and not just the first one?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top