Du gör följande: http://support.microsoft.com/default.aspx?scid=kb;en-us;315832Upload a File to an ASP.NET application?
Vilken kod använder man sig av då?
Nån som kan hjäla mig? Nån som vet nån bra länk? eller nått..
tack på förhand..Sv: Upload a File to an ASP.NET application?
<code>
if( txtFile.PostedFile != null )
{
txtFile.PostedFile.SaveAs(path + fileName);
}
</code>
<code>
<INPUT id="txtFile" type="file" size="70" name="txtFile" runat="server">
</code>
/Fredrik NSv: Upload a File to an ASP.NET application?