frames page Asp to Asp.net

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Tony WONG

    #1

    frames page Asp to Asp.net

    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<divand bottom <divparts,
    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 <divregulary (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


  • Mark Rae [MVP]

    #2
    Re: frames page Asp to Asp.net

    "Tony WONG" <x34@netvigator .comwrote in message
    news:efLD2KYNJH A.4116@TK2MSFTN GP02.phx.gbl...
    grateful for any comments for the best way to do.
    I would probably use an <iframe>:



    --
    Mark Rae
    ASP.NET MVP


    Comment

    • Cowboy \(Gregory A. Beamer - MVP\)

      #3
      Re: frames page Asp to Asp.net

      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


      or just read it:


      *************** *************** **************
      | Think outside the box! |
      *************** *************** **************
      "Tony WONG" <x34@netvigator .comwrote in message
      news:efLD2KYNJH A.4116@TK2MSFTN GP02.phx.gbl...
      >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<divand bottom <divparts,
      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 <divregulary (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
      >

      Comment

      Working...