Passing Values with Server.Transfer

fruipsybrunny

New Member
I'm working on a component for processing orders through a gateway. In order to determine whether to post a batch of data, we first have to verify it through the gateway.<BR><BR>The connection to the gateway is a com object on the server. This all works fine. A response comes back with data on how the order should be processed from there.<BR><BR>The data comes back as a string which I split into an array. The values come back fine. The I build a select case statement to sort out which page the client should be redircted to. This works fine too.<BR><BR>Here's the problem:<BR><BR>Depending on the result of this response string, I have to transfer control to one or another page . . . . Is there ANY way to pass non-requestForm/querystring values --, values from this array for example. <BR><BR>The client needs certain instructions depending on the results, and depending on the page they end up at as a result of the results of the response string.<BR><BR>There is too much data (potentially, anyway) to use a redirect with the values attached in a querrystring . . . and I'd rather not have to force the client to press another button to process yet another form.<BR><BR>So, I'd love it is someone could suggest a way to pass the response values or some other method for accomplishing this. <BR><BR>Thanks,<BR><BR>SeamusD'oh!<BR><BR>I'm sorry; I posted to the wrong board!!!<BR><BR>-- Seamus
 
Back
Top