views:

9

answers:

0

Hi guys,

We are working on an assignment to create a web application using SharePoint 2010 which is totally new to all of us.

My challenge is creating a file upload form. I used SharePoint designer to drag the upload texbox and button controls from the ASP.NET tool box. I don't know what to do next because I need the files to go where I want.

Here is the code that I have for the control I palced on the page:

<form id="form1" runat="server">
<asp:FileUpload runat="server" id="FileUpload1" /><br />
<br />
<asp:Button runat="server" Text="Upload" id="Button1" Width="88px" />
</form>

related questions