views:

43

answers:

2

I want to upload a file on my aspx page.

I am using

<form id="frmId" method="post" enctype="Multipart/form-data">
<input type="file" id="file1"/>
<input type="submit" id="btnsubmit"/>
</form>

and in code behind I am trying to get this file. Its not letting me to get the file until I use server side input file control. I don't want to use runat="server" attribute with my file control.

Do anyone know how to do this.

A: 

You can not access control on server side code with out runat="server" attribute.

Pranay Rana
+1  A: 

Have you tried the Request.Files collection?

patmortech
yes I have tried it.
vaibhav