如何从代码后面激活ASP.NET fileupload?

时间:2011-11-09 13:37:51

标签: asp.net file-upload code-behind

我正在开发一个应用程序,我需要从后面的代码激活fileupload, 有谁知道怎么做? 感谢。

2 个答案:

答案 0 :(得分:2)

也许是这样的。这必须在客户端触发。

<html>
<head>
<script lang="text/javascript">
function openDialog(){
    document.getElementById('fileupload').click();
}
</script>
</head>
<body onload='openDialog()'>

<input type="file" id="fileupload" />
</body>
</html>

答案 1 :(得分:1)

不确定你到底需要什么。请使用ASP.NET 2.0中的FileUpload控件。