Jump to content

retrieve information from a database

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1
moonrise

moonrise

    Learning Programmer

  • Members
  • PipPipPip
  • 40 posts
I want to retrieve information from a database and display the results
into relating textboxes.
What java function do I use to access and write to an already existing
textbox on an html page?

#2
TkTech

TkTech

    The Crazy One

  • Moderators
  • 1,396 posts
you can set the value using:
document.<element name>.value = "blabla";

#3
forumnewbie

forumnewbie

    Newbie

  • Members
  • Pip
  • 7 posts

TkTech said:

you can set the value using:
document.<element name>.value = "blabla";

right, but this is javascript, not java.