Renidrag Posted September 8, 2004 Posted September 8, 2004 Is there an .NET version of "<input type=file..." ? Quote
*Experts* Bucky Posted September 8, 2004 *Experts* Posted September 8, 2004 In a way, yes. If you give the control an "id" attribute, then you can declare a variable of type HtmlInputFile with the same name, and then interact with that. So, this would be in your HTML: <input type = "file" id = "fileInput" runat = "server"> And this would be in your code-behind (assuming you're using one): Protected fileInput As HtmlInputFile See MSDN for an example. Quote "Being grown up isn't half as fun as growing up These are the best days of our lives" -The Ataris, In This Diary
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.