Click here to Skip to main content
15,917,177 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Browser compatibility Error [modified] Pin
Michael Sync16-Aug-07 21:09
Michael Sync16-Aug-07 21:09 
GeneralRe: Browser compatibility Error [modified] Pin
nandhububbly16-Aug-07 21:57
nandhububbly16-Aug-07 21:57 
Questioncase structure in vb.net!!! [modified] Pin
Rharzkie16-Aug-07 19:31
Rharzkie16-Aug-07 19:31 
AnswerRe: case structure in vb.net!!! Pin
Michael Sync16-Aug-07 20:30
Michael Sync16-Aug-07 20:30 
GeneralRe: case structure in vb.net!!! Pin
Rharzkie16-Aug-07 20:39
Rharzkie16-Aug-07 20:39 
GeneralRe: case structure in vb.net!!! Pin
Michael Sync16-Aug-07 21:13
Michael Sync16-Aug-07 21:13 
GeneralRe: case structure in vb.net!!! Pin
Rharzkie16-Aug-07 20:48
Rharzkie16-Aug-07 20:48 
GeneralRe: case structure in vb.net!!! Pin
Michael Sync16-Aug-07 21:14
Michael Sync16-Aug-07 21:14 
GeneralRe: case structure in vb.net!!! Pin
Rharzkie17-Aug-07 20:17
Rharzkie17-Aug-07 20:17 
GeneralRe: case structure in vb.net!!! Pin
Michael Sync18-Aug-07 7:24
Michael Sync18-Aug-07 7:24 
QuestionGridview in asp.net 2.0 Pin
Milind Panchal16-Aug-07 19:16
Milind Panchal16-Aug-07 19:16 
AnswerRe: Gridview in asp.net 2.0 Pin
nandhububbly16-Aug-07 19:28
nandhububbly16-Aug-07 19:28 
GeneralRe: Gridview in asp.net 2.0 Pin
N a r e s h P a t e l16-Aug-07 19:30
N a r e s h P a t e l16-Aug-07 19:30 
GeneralRe: Gridview in asp.net 2.0 Pin
Milind Panchal16-Aug-07 19:31
Milind Panchal16-Aug-07 19:31 
GeneralRe: Gridview in asp.net 2.0 Pin
N a r e s h P a t e l16-Aug-07 19:38
N a r e s h P a t e l16-Aug-07 19:38 
AnswerRe: Gridview in asp.net 2.0 Pin
nandhububbly16-Aug-07 19:41
nandhububbly16-Aug-07 19:41 
GeneralRe: Gridview in asp.net 2.0 Pin
N a r e s h P a t e l16-Aug-07 19:57
N a r e s h P a t e l16-Aug-07 19:57 
GeneralRe: Gridview in asp.net 2.0 Pin
Milind Panchal17-Aug-07 19:14
Milind Panchal17-Aug-07 19:14 
QuestionFileUpload control Pin
Imran Khan Pathan16-Aug-07 19:01
Imran Khan Pathan16-Aug-07 19:01 
AnswerRe: FileUpload control Pin
Michael Sync16-Aug-07 20:21
Michael Sync16-Aug-07 20:21 
GeneralRe: FileUpload control Pin
Imran Khan Pathan16-Aug-07 20:40
Imran Khan Pathan16-Aug-07 20:40 
GeneralRe: FileUpload control Pin
Michael Sync17-Aug-07 1:18
Michael Sync17-Aug-07 1:18 
Try this code ~
----------------------------------


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>Untitled Page</title>
<style type="text/css">
.file{
filter:alpha(opacity=0);
-moz-opacityBlush | :O .0;
opacity: 0.0;
position:absolute;
left: -150px;

}
</style>
<script language="javascript" type="text/javascript">
function fireFileClick(){
var objfile = document.getElementById('myFile');
objfile.click();

var objTextBox = document.getElementById('txtPath');
objTextBox.value = objfile.value;
}
</script>
</head>
<body>
<input id="myfile" type="file" class="file" />
<input type="button" id="btnUpload" value="Upload" onclick="fireFileClick();" />
<input type="text" id="txtPath" />
</body>
</html>


Thanks and Regards,
Michael Sync ( Blog: http://michaelsync.net)

If you want to thank me for my help, please vote my message by clicking one of numbers beside "Rate this message". Why vote? Plz Read it here. Thank you. Smile | :)
GeneralRe: FileUpload control Pin
ahmed_fci200622-Sep-07 23:29
ahmed_fci200622-Sep-07 23:29 
GeneralRe: FileUpload control Pin
Michael Sync23-Sep-07 1:10
Michael Sync23-Sep-07 1:10 
GeneralRe: FileUpload control Pin
ahmed_fci200623-Sep-07 21:25
ahmed_fci200623-Sep-07 21:25 

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.