Im Upload-Formular eine Standardpfadangabe direkt vorgeben
Martini
- html
0 rainer
Hallo Kollegen,
ich will in einem Upload-Formular eine Pfadangabe als Standard vorgeben, die mir dann sofort im Feld angezeigt wird.
Geht das? und wenn ja, wie?
Danke für die Hilfe,
Martini!
Hallo Kollegen,
ich will in einem Upload-Formular eine Pfadangabe als Standard vorgeben, die mir dann sofort im Feld angezeigt wird.
Geht das? und wenn ja, wie?Danke für die Hilfe,
Martini!
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF">
<form name="form1" >
<input type="text" name="textfield" value="test">
</form>
</body>
</html>
Gruss
rainer
Hallo Kollegen,
ich will in einem Upload-Formular eine Pfadangabe als Standard vorgeben, die mir dann sofort im Feld angezeigt wird.
Geht das? und wenn ja, wie?Danke für die Hilfe,
Martini!
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head><body bgcolor="#FFFFFF">
<form name="form1" >
<input type="text" name="textfield" value="test">
</form>
</body>
</html>Gruss
rainer
Danke für die schnelle Antwort.
So funktioniert es aber auch nicht, weil der "input type" nicht "text" sondern "file" ist. Schreibe ich value="c:\temp\text.txt" setzt er mir das nicht automatisch in das Feld ein.
Warum nicht und wie geht es dann?
Thanks,
Martini
Hi Martini,
Danke für die schnelle Antwort.
So funktioniert es aber auch nicht, weil der "input type" nicht "text" sondern "file" ist. Schreibe ich value="c:\temp\text.txt" setzt er mir das nicht automatisch in das Feld ein.
Warum nicht und wie geht es dann?
Tja, zu "value" im Zusammenhang mit "input type="file" sagt das w3c folgendes:
file
Creates a file select control. User agents may use the value of the value attribute as the initial file name.
(vgl. http://www.w3.org/TR/html4/interact/forms.html#h-17.4)
D.h., es ist den Browserprogrammierern überlassen, ob das so geht oder nicht. Ich hab' es jetzt nicht getestet auf welchen Browsern es geht und auf welchen nicht.
Wie es sonst geht? Gar nicht! (Hatten wir das nicht heut schon mal? ;-)
Grüße,
Utz