Help with JAVASCRIPT UPDATE

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Madhusudhanan Chandrasekaran

    Help with JAVASCRIPT UPDATE

    Hi,
    I want to have a text box and an update button.Whatever i type in the
    text box should be reflected on the html page.Like i want to type in the
    papers i should read for say, i type the paper name and it should be
    reflected on my webpage.It would be great if someone could help me.
    Thanks in advance,
    Madhu
  • Hywel

    #2
    Re: Help with JAVASCRIPT UPDATE

    In article <Pine.SOL.4.56. 0408072323320.8 575@pollux.cse. buffalo.edu>,
    Madhusudhanan Chandrasekaran says...[color=blue]
    > Hi,
    > I want to have a text box and an update button.Whatever i type in the
    > text box should be reflected on the html page.Like i want to type in the
    > papers i should read for say, i type the paper name and it should be
    > reflected on my webpage.It would be great if someone could help me.[/color]

    Do you have ASP or other server-side JavaScript facilities? If not,
    you'll need some other server-side technology to help you.

    --
    Hywel


    Comment

    • Madhusudhanan Chandrasekaran

      #3
      Re: Help with JAVASCRIPT UPDATE

      Yes i do server-side technology.Also how about perl.Can i do it without
      the server side technology. I just have to parse the html file and append
      it.It is my wild guess!
      Thanks,
      Madhu
      On Sun, 8 Aug 2004, Hywel wrote:
      [color=blue]
      > In article <Pine.SOL.4.56. 0408072323320.8 575@pollux.cse. buffalo.edu>,
      > Madhusudhanan Chandrasekaran says...[color=green]
      > > Hi,
      > > I want to have a text box and an update button.Whatever i type in the
      > > text box should be reflected on the html page.Like i want to type in the
      > > papers i should read for say, i type the paper name and it should be
      > > reflected on my webpage.It would be great if someone could help me.[/color]
      >
      > Do you have ASP or other server-side JavaScript facilities? If not,
      > you'll need some other server-side technology to help you.
      >
      > --
      > Hywel
      >
      > http://sponsorhywel.org.uk/
      >[/color]

      Comment

      • Hywel

        #4
        Re: Help with JAVASCRIPT UPDATE

        In article <Pine.SOL.4.56. 0408080945050.1 0688@pollux.cse .buffalo.edu>,
        Madhusudhanan Chandrasekaran says...[color=blue]
        > On Sun, 8 Aug 2004, Hywel wrote:
        >[color=green]
        > > In article <Pine.SOL.4.56. 0408072323320.8 575@pollux.cse. buffalo.edu>,
        > > Madhusudhanan Chandrasekaran says...[color=darkred]
        > > > Hi,
        > > > I want to have a text box and an update button.Whatever i type in the
        > > > text box should be reflected on the html page.Like i want to type in the
        > > > papers i should read for say, i type the paper name and it should be
        > > > reflected on my webpage.It would be great if someone could help me.[/color]
        > >
        > > Do you have ASP or other server-side JavaScript facilities? If not,
        > > you'll need some other server-side technology to help you.[/color][/color]
        [color=blue]
        > Yes i do server-side technology.Also how about perl.Can i do it without
        > the server side technology.[/color]

        No. How will you update the HTML without server-side technology?

        [color=blue]
        > I just have to parse the html file and append
        > it.[/color]

        It is as simple as that, with the right technology.



        --
        Hywel


        Comment

        • Lee

          #5
          Re: Help with JAVASCRIPT UPDATE

          Madhusudhanan Chandrasekaran said:[color=blue]
          >
          >Yes i do server-side technology.Also how about perl.Can i do it without
          >the server side technology. I just have to parse the html file and append
          >it.It is my wild guess![/color]


          The trick is to modify the version that's stored on the server.
          The client can't do that.

          Have the client side page post the addition to a CGI script
          that updates the HTML file.

          Comment

          Working...