orders

Tamer_Ahmed

Centurion
Joined
Dec 20, 2003
Messages
159
Location
Egypt
hi all
i'm creating asp.net app for my employees
this app will let them recieve orders
but i want the page to be up to date i mean that every order send must appear automatically in the page and i don't want my employees to refresth the page manual i want it to work automaticaly i think i'll need to create listener or something like this does any one have an idea about my problem
 
I think u just need to "re-bind" after you do the save..

so , order is saved to the database, after your save, just call the rebind routine and pull the saved data back into the datagrid,textbox, whatever you're using to display the data..

at least that's how I do it. Users save their data , I rebind (do a select to the database) and pull back the latest data and display.
 
Back
Top