frames page Asp to Asp.net

T

Tony WONG

i wrote a asp page before
the top frame to for entering data
the bottom frame to for display the data being entered in the top frame in a
table form

now i wish to rewrite it to asp.net
- heard some suggestions not to use frame again

is it ok to divide a page by "css" into top<div> and bottom <div> parts,
like my previous asp page.

when the data being entered in top <div>, the data can be shown in bottom
<div>

but the page is shared among users, data is entered continuously.

is it possible to refresh the bottom <div> regulary (every 60 seconds)
without interrupting the top <div>.

i've some knowledge in asp and javascript, not know ajax.

grateful for any comments for the best way to do.

thanks a lot.

Tony
 
C

Cowboy \(Gregory A. Beamer - MVP\)

Use AJAX to refresh. You can choose whether to iframe the content (a
semi-complete separation) or just use DIV tags. In other words, yes, you can
update one DIV without updating the entire content of the page. There are
videos as www.asp.net/ajax.

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

Subscribe to my blog
http://feeds.feedburner.com/GregoryBeamer#

or just read it:
http://feeds.feedburner.com/GregoryBeamer

********************************************
| Think outside the box! |
********************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top