Discussions
Stay up-to-date with the latest news from NetSuite. You’ll be in the know about how to connect with peers and take your business to new heights at our virtual, in-person, on demand events, and much more.
Now is the time to ask your NetSuite-savvy friends and colleagues to join the NetSuite Support Community! Refer now! Click here to watch and learn more!
How to update a record
Setup a hosted Web Site containing a basic form with HTML and Attribute tags. Not sure how to submit the form back to Netsuite and update a record. How is this accomplished?
<div> <form action="" method="post"> <div>Name: <input type="text" name="entityid" id="entityid" value="<%=getAttribute('customer',25,'entityid')%>" /></div> <div><input type="submit" value="Update" /></div> </form> </div> 0