如何从代码隐藏激活 ASP.NET 文件上传?

发布于 2024-12-14 09:08:46 字数 51 浏览 0 评论 0原文

我正在开发一个应用程序,我需要从后面的代码激活文件上传, 有人知道该怎么做吗? 谢谢。

i'm developing an application and i need to activate fileupload from code behind,
anyone knows how to do it?
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

汹涌人海 2024-12-21 09:08:46

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

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

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

Maybe something like that. This has to be triggered on client side.

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

<input type="file" id="fileupload" />
</body>
</html>
妄想挽回 2024-12-21 09:08:46

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

Not sure what exactly you need. please use FileUpload control in ASP.NET 2.0 on wards.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文