dblayout
|
| Posted: 07/21/2003, 9:50 PM |
|
I have a search results Grid that displays some search results. The 2nd line of the grid (a header line - not a detail line) also contains 2 PayPal buttons (Add to cart, View cart). These buttons have 'dummy' values in 2 fields: item_name & item_number. When the Grid is displayed, I need to be able to change these Values to their correct values. I have tried item_name.value = "XX", gridname.item_name.value = "xx", Search.GridName.item_name.value = "xx". I am trying to add this code in the Before Show event of the Grid. None of these work. How do I change an HTML forms field values from my ASP code?
Thanks
Chris
|
|
|
 |
Blinky Bill
|
| Posted: 08/03/2003, 6:29 AM |
|
Chris,
Try using the Before_Show event of the object.
Grid.Object.Value = "my text"
|
|
|
 |
|