dynamic sites with HTML pages

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • dasrasmikant
    New Member
    • Jan 2008
    • 30

    dynamic sites with HTML pages

    Hello everybody,
    I have seen in a lots of website the dynamic contents with HTML pages.
    So could someone suggest me how is it possible??

    Thanks in advance.
  • hsriat
    Recognized Expert Top Contributor
    • Jan 2008
    • 1653

    #2
    I think you want to know about DHTML.

    Or is there any particular website you talking about?

    Comment

    • dasrasmikant
      New Member
      • Jan 2008
      • 30

      #3
      Originally posted by hsriat
      I think you want to know about DHTML.

      Or is there any particular website you talking about?
      Thanks for the response
      Even this site also holds dynamic content in HTML pages. you can see this page http://bytes.com/forum/thread790710.html . Here the contents are nodoubt dynamic.

      Comment

      • hsriat
        Recognized Expert Top Contributor
        • Jan 2008
        • 1653

        #4
        Are you talking about drop-down menu?

        Comment

        • dasrasmikant
          New Member
          • Jan 2008
          • 30

          #5
          Originally posted by hsriat
          Are you talking about drop-down menu?
          No sir.
          I mean how HTML page holds dynamic content.
          I m sorry that I cant reach u.

          Comment

          • hsriat
            Recognized Expert Top Contributor
            • Jan 2008
            • 1653

            #6
            Originally posted by dasrasmikant
            No sir.
            I mean how HTML page holds dynamic content.
            I m sorry that I cant reach u.
            Ok, I got you.

            I guess you want to use one of the server side scripting languages.
            PHP, ASP or JSP are commonly used these days.

            The content whom you call dynamic is actually in the database, and the server side scripts fetch them from db, and send them to the client as html.

            Am I getting you right or again I'm far away from what you are questioning me?

            Comment

            • dasrasmikant
              New Member
              • Jan 2008
              • 30

              #7
              Originally posted by hsriat
              Ok, I got you.

              I guess you want to use one of the server side scripting languages.
              PHP, ASP or JSP are commonly used these days.

              The content whom you call dynamic is actually in the database, and the server side scripts fetch them from db, and send them to the client as html.

              Am I getting you right or again I'm far away from what you are questioning me?
              Yes u are right sir.
              so u mean the the ASP/PHP/JSP scripts can generate html pages dynamcally??

              Comment

              • hsriat
                Recognized Expert Top Contributor
                • Jan 2008
                • 1653

                #8
                Originally posted by dasrasmikant
                Yes u are right sir.
                so u mean the the ASP/PHP/JSP scripts can generate html pages dynamcally??
                Yeh, they are used to do that.
                Do search for some online tutorials for either of these and learn that yourself.

                Finally I have got what you were asking. And the funniest thing is, you were asking about Server Side Scripting and I thought you were asking about the drop down menu :D

                Regards,
                Harpreet

                Comment

                • sevry
                  New Member
                  • Mar 2008
                  • 3

                  #9
                  Originally posted by dasrasmikant
                  u mean the the ASP/PHP/JSP scripts can generate html pages dynamcally??
                  Even worse, you can think of the html as mere content, and present it in any way using javascript and css. If someone pushes a button, and you set it up so that it means present this as an entirely different page, your script can block everything out that had been showing, and put the information from the HTML up in any new way imaginable. All you have to know is what in the document is content, and what kind of content, and what order. You can redraw it in hundreds of different ways.

                  Comment

                  Working...