PDA

View Full Version : Page refresh


theroil
06-15-2003, 01:51 PM
Hello

Forgive me, I'm a designer and not code savvy at all. I'm working on a project using asp functions that call content from database into a layer. It seems to serve the client's needs, but...he HATES to see the entire page refresh each time new content from the database is displayed. Can anyone direct me to a solution that only involves the layer refreshing, rather than the entire page. Please explain any solutions in a way a dummy (me) can undertand. I have access to a good coder who can help me out once I find a solution.

Thanks
Dave

Kodo
06-15-2003, 06:23 PM
Try using an I-Frame.. tell your coder about it.. he'll know.

Bullschmidt
06-16-2003, 12:41 AM
By the way one thing I try to do when I refresh a page because a user changed something in a listbox that another listbox below it is based on is to automatically put the cursor on the new listbox with JavaScript:

<script type="text/javascript">document.frmMain.CustID.focus();</script>