Click here to Skip to main content
15,909,827 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Who showed respect of me? Pin
Colin Angus Mackay13-Aug-06 13:06
Colin Angus Mackay13-Aug-06 13:06 
QuestionSMIL Question Pin
Tamimi - Code12-Aug-06 21:14
Tamimi - Code12-Aug-06 21:14 
QuestionCSS Question about floats Pin
matthias s.11-Aug-06 23:25
matthias s.11-Aug-06 23:25 
AnswerRe: CSS Question about floats Pin
Guffa12-Aug-06 2:22
Guffa12-Aug-06 2:22 
QuestionClear Text in [input type=file] [modified] Pin
manowj11-Aug-06 0:15
manowj11-Aug-06 0:15 
AnswerRe: Clear Text in [input type=file] Pin
George L. Jackson11-Aug-06 14:04
George L. Jackson11-Aug-06 14:04 
GeneralRe: Clear Text in [input type=file] [modified] Pin
manowj11-Aug-06 19:07
manowj11-Aug-06 19:07 
AnswerRe: Clear Text in [input type=file] Pin
George L. Jackson12-Aug-06 2:16
George L. Jackson12-Aug-06 2:16 
Sorry, I was confused with your code of hiding and displaying the <input type="file" /> control. So I just modified what you had.

The <input type="file" /> allows access to the client's computer. Thus, it is subject to the security controls on the client's computer. I have a solution but you may not be pleased with it:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title></title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
<style type="text/css">
input#File2 { display: none; }
div#toggle { height: 2 em; }
</style>
</head>
<body>
<form name="test" action="test.html" method="post" encType="multipart/form-data" ID="Form1">
<div id="toggle">
<input type="radio" name="optStatus" id="S1" value="r1" checked onclick="document.getElementById('File2').style.display='none';document.getElementById('File1').style.display='inline';"/>r1
<input type="radio" name="optStatus" id="S2" value="r2" onclick="document.getElementById('File2').style.display='inline';document.getElementById('File1').style.display='none';" />r2
</div>
<div id="files">
<input id="File1" type="file" name="File1" size="33" />
<input id="File2" type="file" name="File2" size="33" />
</div>
<div>
<input id="Clear" type="reset" name="Clear" />
</div>
</form>
</body>
</html>
GeneralRe: Clear Text in [input type=file] Pin
manowj13-Aug-06 19:13
manowj13-Aug-06 19:13 
GeneralRe: Clear Text in [input type=file] Pin
George L. Jackson15-Aug-06 3:32
George L. Jackson15-Aug-06 3:32 
GeneralRe: Clear Text in [input type=file] Pin
manowj15-Aug-06 18:39
manowj15-Aug-06 18:39 
QuestionAny online free resouce for internet security Pin
Suj_7810-Aug-06 22:55
Suj_7810-Aug-06 22:55 
AnswerRe: Any online free resouce for internet security Pin
Kevin McFarlane10-Aug-06 23:18
Kevin McFarlane10-Aug-06 23:18 
QuestionDotNetNuke web hosting setup Pin
karanjsingh10-Aug-06 17:02
karanjsingh10-Aug-06 17:02 
AnswerRe: DotNetNuke web hosting setup Pin
Colin Angus Mackay13-Aug-06 13:11
Colin Angus Mackay13-Aug-06 13:11 
GeneralRe: DotNetNuke web hosting setup Pin
karanjsingh14-Aug-06 18:34
karanjsingh14-Aug-06 18:34 
Questionflash and php Pin
manimegalai82@gmail.com10-Aug-06 11:06
manimegalai82@gmail.com10-Aug-06 11:06 
Questiondrop down on mouseover Pin
manimegalai82@gmail.com10-Aug-06 10:58
manimegalai82@gmail.com10-Aug-06 10:58 
AnswerRe: drop down on mouseover Pin
ramuvk10-Aug-06 20:18
ramuvk10-Aug-06 20:18 
GeneralRe: drop down on mouseover Pin
manimegalai82@gmail.com11-Aug-06 2:17
manimegalai82@gmail.com11-Aug-06 2:17 
GeneralRe: drop down on mouseover Pin
ramuvk11-Aug-06 3:12
ramuvk11-Aug-06 3:12 
QuestionCreating folder on a Server via a Web app Pin
ONeil Tomlinson10-Aug-06 8:53
ONeil Tomlinson10-Aug-06 8:53 
AnswerRe: Creating folder on a Server via a Web app Pin
led mike10-Aug-06 9:04
led mike10-Aug-06 9:04 
GeneralRe: Creating folder on a Server via a Web app Pin
ONeil Tomlinson10-Aug-06 22:31
ONeil Tomlinson10-Aug-06 22:31 
GeneralRe: Creating folder on a Server via a Web app Pin
George L. Jackson11-Aug-06 9:07
George L. Jackson11-Aug-06 9:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.