boandre: Datei einlesen und Formular ausfüllen

Beitrag lesen

Hallo,
ich habe folgendes Problem.

Ich habe eine Datei und ein Formular.
Die Datei ist eine einfache txt-Datei und das Formular ist eine HTML-Datei.

Die Daten aus der txt-Datei sollen automatisch in die Felder des Formulars übertragen werden.

TXT-Datei Schema

11111111111;1111;1111111111

Formular-HTML Schema

<INPUT TYPE="TEXT" NAME="LI-PART-NR.1" VALUE="" SIZE="11" MAXLENGTH="11" onFocus="StdOnFocus(this)" onBlur="OnBlurNum(this,0,11)"></TD>

<TD><INPUT TYPE="TEXT" NAME="LI-REQUEST-QUANTITY.1" VALUE="" SIZE="4" MAXLENGTH="4" onFocus="StdOnFocus(this)" onBlur="OnBlurNum(this,0,4)"></TD>
<TD ALIGN="LEFT"><INPUT TYPE="TEXT" NAME="LI-CUST-DESCR.1" VALUE="" SIZE="10" MAXLENGTH="10" onFocus="StdOnFocus(this)" onBlur="OnBlurStr(this)"></TD>

Mit welcher Programmiersprache löst man das Problem am besten und
wie?

Danke im Voraus
boandre