Ask a Question related to ASP, Design and Development.
-
atse #1
file field
Hi,
In the file field <input type="file" name="file1">, can I modify the button
"Browse..."?
I want to hide the file field but show a button like "Open". When I click on
this button, it catches a file, and use onchange even to upload this file.
thanks for any idea.
Atse
atse Guest
-
Help with FILE FIELD Problem
hello I am building a page in form mail page in HTMXL cgi/formmail POST encytype is application/x-www-form-urlencoded. I am collecting names... -
File Field Confusion
Please can someone tell me how to make the "file field" in dreamweaver work. What i'm trying to do is have anyone that enters the site to put a... -
File Field Confusion!
:confused; I've been trying to find out how to get "file field" on my forms to work for a while now. I really cant figure this out. Could somebody... -
How to get binary file from SQL field?
I want to display binary data from SQL server 2000 in an asp page. The data comes from a Windows Sharepoint Services document library. The raw... -
File Field Control
hie all, i have dragged a File Field control from the HTML tab to my page and i am able to browse and retrieve the file i want. the only problem i... -
Atrax #2
Re: file field
I'm afraid you can't modify that button in current browsers
IIRC, though, there are tricks you can do with CSS layers which might be
able to mask it...
--
Atrax, MVP, IIS
[url]http://rtfm.atrax.co.uk/[/url]
"atse" <dunggaze@yahoo.com> wrote in message
news:ooJjb.356656$Lnr1.181446@news01.bloor.is.net. cable.rogers.com...button> Hi,
> In the file field <input type="file" name="file1">, can I modify theon> "Browse..."?
> I want to hide the file field but show a button like "Open". When I click> this button, it catches a file, and use onchange even to upload this file.
> thanks for any idea.
> Atse
>
>
>
Atrax Guest
-
Antonin Foller #3
Re: file field
Hi, Atse
Please see the code bellow. It uses customized button, you can also use
an image or other HTML element to browse files.
There is one difference with this code and plain type=file field -
client must select file from browse window, cannot copy full path to the
text field.
Antonin
See Pure/Huge ASP upload ([url]http://www.pstruh.cz[/url]) to accept uploaded file
in ASP :-)
<HTML>
<HEAD>
<TITLE></TITLE>
<Script Language='Javascript'>
function validateFile()
{
document.frm.Image.click();
var sTmpString = new String(document.frm.Image.value);
var iPos = sTmpString.lastIndexOf("\\");
document.frm.txt.value = sTmpString.substring(iPos+1,sTmpString.length);
}
</Script>
</HEAD>
<BODY>
<form name="frm">
<input type="file"
name="Image" size="20"
onChange="validateFile();" style="visibility:hidden;">
<input type="text" name="txt">
<input type="button" value="Browse ..."
onMouseDown="validateFile();">
</form>
</BODY>
</HTML>
"atse" <dunggaze@yahoo.com> wrote in message
news:ooJjb.356656$Lnr1.181446@news01.bloor.is.net. cable.rogers.com...button> Hi,
> In the file field <input type="file" name="file1">, can I modify theon> "Browse..."?
> I want to hide the file field but show a button like "Open". When I click> this button, it catches a file, and use onchange even to upload this file.
> thanks for any idea.
> Atse
Antonin Foller Guest
-
atse #4
Re: file field
Thanks Antonin, but it doesn't work for me, because no file is passed to
upload. I enable Image's visibility, and found the path there. When I click
on the submit button once, the path is clear on the Image field, and the
form doesn't submit. In another word, click once the submit button, the form
doesn't submit, but the Image field is clear the path. Any idea?
atse
"Antonin Foller" <antonin@foller.cz> wrote in message
news:u%23hnSsNlDHA.2000@TK2MSFTNGP12.phx.gbl...use> Hi, Atse
>
> Please see the code bellow. It uses customized button, you can alsofile> an image or other HTML element to browse files.
> There is one difference with this code and plain type=file field -
> client must select file from browse window, cannot copy full path to the
> text field.
>
>
> Antonin
> See Pure/Huge ASP upload ([url]http://www.pstruh.cz[/url]) to accept uploadedclick> in ASP :-)
>
> <HTML>
> <HEAD>
> <TITLE></TITLE>
> <Script Language='Javascript'>
> function validateFile()
> {
> document.frm.Image.click();
> var sTmpString = new String(document.frm.Image.value);
>
> var iPos = sTmpString.lastIndexOf("\\");
>
> document.frm.txt.value = sTmpString.substring(iPos+1,sTmpString.length);
>
> }
> </Script>
> </HEAD>
> <BODY>
> <form name="frm">
> <input type="file"
> name="Image" size="20"
> onChange="validateFile();" style="visibility:hidden;">
> <input type="text" name="txt">
> <input type="button" value="Browse ..."
> onMouseDown="validateFile();">
> </form>
> </BODY>
> </HTML>
>
> "atse" <dunggaze@yahoo.com> wrote in message
> news:ooJjb.356656$Lnr1.181446@news01.bloor.is.net. cable.rogers.com...> button> > Hi,
> > In the file field <input type="file" name="file1">, can I modify the> > "Browse..."?
> > I want to hide the file field but show a button like "Open". When Ifile.> on> > this button, it catches a file, and use onchange even to upload this>> > thanks for any idea.
> > Atse
>
atse Guest
-
Tom #5
Re: file field
Yes, the browser doesn't allow this. Although you might be able to
hide the input with a layer or something, you won't be able to pre-set
the file that you want uploaded. You need to use an applet or other
client control like ActiveX to supplement the browser security
limitations.
-Tom
"Atrax" <atrax@dontspamatrax.co.uk> wrote in message news:<u35TqbGlDHA.2456@TK2MSFTNGP09.phx.gbl>...> I'm afraid you can't modify that button in current browsers
>
> IIRC, though, there are tricks you can do with CSS layers which might be
> able to mask it...
>
>
> --
> Atrax, MVP, IIS
>
> [url]http://rtfm.atrax.co.uk/[/url]
>
> "atse" <dunggaze@yahoo.com> wrote in message
> news:ooJjb.356656$Lnr1.181446@news01.bloor.is.net. cable.rogers.com...> button> > Hi,
> > In the file field <input type="file" name="file1">, can I modify the> on> > "Browse..."?
> > I want to hide the file field but show a button like "Open". When I click> > this button, it catches a file, and use onchange even to upload this file.
> > thanks for any idea.
> > Atse
> >
> >
> >Tom Guest



Reply With Quote

