Wrox Home  
Search P2P Archive for: Go

  Return to Index  

asp_web_howto thread: Need help in HTML


Message #1 by iashraf@a... on Thu, 14 Mar 2002 16:17:32 +0500
Hi all,

I'm using input type=-"file" in a Html page. which displays a TextBox and a
Button with value "Browse" automatically. So problem is that is there any
way to change the style of Browse button, can i put the image instead of
button..

Or is there any way that  i could get the Open Dialog Box on Click of a
button through javascript

plz help me regarding this matter.

Advance thanx

bye


Imran Ashraf
Acrologix (pvt) Ltd.
106/3 Saint Johns Park,
Lahore, Pakistan.
Tel: 92-42-666-4301~6
Fax: 92-42-666-4307
Mob: 0300 - 8662678
Email: iashraf@a...



Message #2 by "Hema R." <hema.r@s...> on Fri, 15 Mar 2002 09:46:10 +0530
Hi,

Try this..

'**********COde begins here**********

<HTML>
<HEAD>
<META NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<SCRIPT LANGUAGE=javascript>
<!--
function CallME()
{
	document.frm.txtbrows.click()
	document.frm.txtval.value = document.frm.txtbrows.value
}
//-->

</SCRIPT>
<style>
	.btnClass{background-color:blue;}
</style>
</HEAD>
<BODY>
<form name=frm>
<input type=file style="DISPLAY: none" name=txtbrows>
<input name="txtval" size="25">
<input class="btnClass" type=button onclick="CallME()" value="Browse.."
style="FONT-SIZE: larger; BACKGROUND-COLOR: greenyellow">
<P>&nbsp;</P>
</form>
</BODY>
</HTML>

'**********Ends HEre**********

regards
Hema

> -----Original Message-----
> From:	iashraf@a... [SMTP:iashraf@a...]
> Sent:	Thursday, March 14, 2002 4:48 PM
> To:	ASP Web HowTo
> Subject:	[asp_web_howto] Need help in HTML
> 
> Hi all,
> 
> I'm using input type=-"file" in a Html page. which displays a TextBox and
> a
> Button with value "Browse" automatically. So problem is that is there any
> way to change the style of Browse button, can i put the image instead of
> button..
> 
> Or is there any way that  i could get the Open Dialog Box on Click of a
> button through javascript
> 
> plz help me regarding this matter.
> 
> Advance thanx
> 
> bye
> 
> 
> Imran Ashraf
> Acrologix (pvt) Ltd.
> 106/3 Saint Johns Park,
> Lahore, Pakistan.
> Tel: 92-42-666-4301~6
> Fax: 92-42-666-4307
> Mob: 0300 - 8662678
> Email: iashraf@a...
> 
> 
> 
> 
*********************************************************************
Disclaimer: The information in this e-mail and any attachments is
confidential / privileged. It is intended solely for the addressee or
addressees. If you are not the addressee indicated in this message, you may
not copy or deliver this message to anyone. In such case, you should destroy
this message and kindly notify the sender by reply email. Please advise
immediately if you or your employer does not consent to Internet email for
messages of this kind.
*********************************************************************

  Return to Index