<allan.madriaga@gmail.com> wrote...
> I am writing a .aspx page and need some help. I am writing a function
> between <script> tags at the top of the page. My code is in J# (which
> is basically java).
1. J# is not Java. J# is a .NET language with Java syntax.
2. If you want to develop aspx-applications, a better choice of language
should be C#.
> My function will retrieve data from a database and
> post them into existing textboxes on the page. My problem is
> accessing the textbox. I don't know what java function to use
> to access and write to an existing textbox. Any ideas?
This has almost nothing to do with Java, but with how to use the .NET
Framework in an aspx-page.
You could look it up in the .NET Framework API for the textbox class in the
webforms namespace.
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlr
fsystemwebuiwebcontrolstextboxclasstopic.asp
Or you could ask for it in a more appropriate newsgroup.
news://msnews.microsoft.com/microsoft.public.dotnet.vjsharp
or in some webforum dealing with J#.
http://forums.microsoft.com/msdn/showforum.aspx?forumid=28&siteid=1
// Bjorn A
allan.madriaga@gmail.com - 20 Mar 2006 20:14 GMT
Thanks for the reply Bjorn! I will do the research.