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!

Form objects in HTTP request

Status
Not open for further replies.

cdfly

Programmer
Jun 16, 2010
68
US
Hello,
I have a form that has an array of controls with the same name. In Livelink can I pull the controls into assoc or list directly from the request, something like C sharps Request.Form["control name"]?

Thanks
 
if your form has a control named node in the post you can get it as r.node.If the node is a repeating node then oscrript will give you a node as well as a node_list inspect the record for a simple eg,or put a break after putting select all
in a multi action livelink page

Well, if I called the wrong number, why did you answer the phone?
James Thurber, New Yorker cartoon caption, June 5, 1937
Certified OT Developer,Livelink ECM Champion 2008,Livelink ECM Champion 2010
 
Thanks for the help. So when I get the node is the data type a RecArray? I tried the following
RecArray rTest = request.node

but it returns what looks like a node id, something like E648871951

Thanks again
 
My mistake. Actually I get an error "Value cannot be coerced to Local type".

Code:
RecArray rTest = request.node
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top