rlgines
Posts: 3
|
| Posted: 11/23/2005, 8:26 AM |
|
I've narrowed down the problem and can recreate it in the ManytoManyCheckbox ASP example. So now hopefully someone can show me what I am doing wrong.
If I create a new button, we'll call it NextStep, and create an event with the following code
Function employees_record_NextStep_OnClick()
UnloadPage()
Response.Redirect "Somewhere.asp"
End Function 'Close employees_record_NextStep_OnClick
I get an expected resulting URL of [BASEURL]/somewhere.asp
If however I add just the following to the event:
Function employees_record_NextStep_OnClick()
Dim emp_id
emp_id=CCGetParm("emp_id", Empty)
UnloadPage()
Response.Redirect "Somewhere.asp?emp_id=" & emp_id
End Function 'Close employees_record_NextStep_OnClick
Then my resulting URL becomes
[BASEURL]/ManyToManyCheckbox.asp?emp_id=31&ccsForm=employees%5Frecord%3AEdit
This is the exact same behavior that I am seeing in my real app. (I get the same result when using emp_name instead of emp_id). Either I have found a bug with the Multi-valued listbox form (unlikely), or I am missing something incredibly obvious (more likely).
Any assistance would be greatly appreciated.
Thanks a bunch.
|