Click here to Skip to main content
16,006,845 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Tooltips help Pin
Guffa30-Aug-07 2:15
Guffa30-Aug-07 2:15 
QuestionImplementation of sharpffmpeg Pin
harryforum29-Aug-07 1:00
harryforum29-Aug-07 1:00 
QuestionFileUpload Control getting the complete Path? Pin
hifiger200429-Aug-07 0:51
hifiger200429-Aug-07 0:51 
AnswerRe: FileUpload Control getting the complete Path? Pin
Fred_Smith29-Aug-07 2:29
Fred_Smith29-Aug-07 2:29 
GeneralRe: FileUpload Control getting the complete Path? Pin
hifiger200429-Aug-07 5:36
hifiger200429-Aug-07 5:36 
GeneralRe: FileUpload Control getting the complete Path? Pin
Fred_Smith29-Aug-07 5:37
Fred_Smith29-Aug-07 5:37 
GeneralRe: FileUpload Control getting the complete Path? Pin
hifiger200429-Aug-07 9:10
hifiger200429-Aug-07 9:10 
GeneralRe: FileUpload Control getting the complete Path? Pin
Fred_Smith29-Aug-07 10:08
Fred_Smith29-Aug-07 10:08 
Well, the code below will popup an alert with the full path of the file selected - this is on a simple HTML file input box. For a server control (FileUpload) you'll need to add the onchange property in your code behind using the .Attributes.Add method of the control -eg, if your FileUpload control has id="FileUpload1 then you'd use:

FileUpload1.Attributes.Add("onchange", "checkPdf(this)")

should work....
Fred

<head >
<title></title>
<script language="javascript" type="text/javascript">
<!--
function checkPdf(what){
alert(what.value);
}
// -->
</script>
</head>
<body>
<form id="form1" name="form1" >
<div>
<input id="File1" type="file" onchange="checkPdf(this)" /></div>
</form>
</body>
</html>
AnswerRe: FileUpload Control getting the complete Path? Pin
hifiger200429-Aug-07 18:16
hifiger200429-Aug-07 18:16 
AnswerRe: FileUpload Control getting the complete Path? Pin
Vasudevan Deepak Kumar31-Aug-07 2:38
Vasudevan Deepak Kumar31-Aug-07 2:38 
QuestionSilverlight and WCF services Pin
Scott Dorman28-Aug-07 8:29
professionalScott Dorman28-Aug-07 8:29 
QuestionJavaScript and CSS tools Pin
megaadam28-Aug-07 5:25
professionalmegaadam28-Aug-07 5:25 
QuestionError while Debugging Pin
ravikiran valluri28-Aug-07 2:50
ravikiran valluri28-Aug-07 2:50 
AnswerQuis custodiet ipsos custodes? Pin
Fred_Smith28-Aug-07 5:29
Fred_Smith28-Aug-07 5:29 
Questionretriving images frm database Pin
diwa8528-Aug-07 1:44
diwa8528-Aug-07 1:44 
AnswerRe: retriving images frm database Pin
Christian Graus28-Aug-07 2:04
protectorChristian Graus28-Aug-07 2:04 
GeneralRe: retriving images frm database Pin
diwa8528-Aug-07 3:04
diwa8528-Aug-07 3:04 
GeneralRe: retriving images frm database Pin
Christian Graus28-Aug-07 10:47
protectorChristian Graus28-Aug-07 10:47 
QuestionMIME type of MS Office 2007 word/xl documents Pin
kisna_madhusudan28-Aug-07 1:43
kisna_madhusudan28-Aug-07 1:43 
Questionproblem with dynamic option list Pin
prachishah28-Aug-07 0:40
prachishah28-Aug-07 0:40 
QuestionHow to access arraylist in javascript Pin
jophinmichael27-Aug-07 22:03
jophinmichael27-Aug-07 22:03 
AnswerRe: How to access arraylist in javascript Pin
Guffa28-Aug-07 6:55
Guffa28-Aug-07 6:55 
QuestionEXCEL FILE - Displaying the content per column Pin
hifiger200427-Aug-07 21:42
hifiger200427-Aug-07 21:42 
QuestionWSE 2.0 and Visual Studio 2005 Pin
Sikk-SikTh27-Aug-07 19:33
Sikk-SikTh27-Aug-07 19:33 
AnswerRe: WSE 2.0 and Visual Studio 2005 Pin
Sikk-SikTh30-Aug-07 10:49
Sikk-SikTh30-Aug-07 10:49 

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.