GiantRobot
Posts: 2
|
| Posted: 03/14/2007, 7:56 AM |
|
Hi,
I've looked around the forums and have found no examples or links to examples that show how to access output parameters. It's kind of frustrating because I read output params are now supported in 3.1 and since they are listed in the query parameter setup tool I dying to make use of them. I have tried a few tests but none have worked. Can some point me to a tutorial or post an example and save me the hours of 'playing around'.
Any help is greatly appreciated.
Gbot
|
 |
 |
Benjamin Krajmalnik
|
| Posted: 03/15/2007, 11:49 PM |
|
I hva not checked in 3.1 ASP, but with both .Net and PHP you can get them.
All of my code for ASP is still is 2.3. I use class wrappers around th SP
calls, have a dummy select in the custom, and use the AfterExecute event to
call my wrapper.
In .Net and PHP you can get at the variables in the AfterInsert/AfterUpdate
events. Take a look at the generated code to see if the parameters you
assigned have the values. You may want to use session variables since then
you won;t have issues with variable scope.
If he parameters are not being reassigned back to the passed parameters, you
may need to handcode that small piece.
"GiantRobot" <GiantRobot@forum.codecharge> wrote in message
news:645f81b1975eea@news.codecharge.com...
> Hi,
>
> I've looked around the forums and have found no examples or links to
> examples
> that show how to access output parameters. It's kind of frustrating
> because I
> read output params are now supported in 3.1 and since they are listed in
> the
> query parameter setup tool I dying to make use of them. I have tried a few
> tests but none have worked. Can some point me to a tutorial or post an
> example
> and save me the hours of 'playing around'.
>
> Any help is greatly appreciated.
> Gbot
> ---------------------------------------
> Sent from YesSoftware forum
> http://forums.codecharge.com/
>
|
|
|
 |
|