I see there are a lot writed about rendering website, but I would like to know if there are samples/tutorial about how do requests from client side to server side.
Example: Once an editbox change, I would like to ask to server the name of a customer with this Id or...
refilling a table because a filter was done, and so on...
I see there are a lot writed about rendering website, but I would like to know if there are samples/tutorial about how do requests from client side to server side.
Example: Once an editbox change, I would like to ask to server the name of a customer with this Id or...
refilling a table because a filter was done, and so on...
Also check the feedback app and source code included in the bundle... There's a class module called DBM that deals with database info write and read...
If I understand correctly, you can create a sub with the name of the button (for example) plus event (SaveBtn_Clicked for example) and you can do here server side, and in the same time update client side controls referenced with "page"?, is this correct?
Then, if I have a combo, I should create a sub like MyCombo_Changed ?