I finally got time to try this out and found that it doesn't solve my problem, as it uploads local files (that would have to be on the server).
To explain my problem; I have some TextBox controls that has to be saved in the DB and a FileUpload control that has to be uploaded directly to Nirvanix.
The (test) form looks like this:
<
strong>Upload file:</strong><br />
File to upload: <asp:FileUpload ID="FileUpload1" runat="server" /><br />
Description: <asp:TextBox ID="TextBoxFileDescription" runat="server" TextMode="MultiLine"></asp:TextBox><br />
<asp:Button ID="ButtonUpload" runat="server" Text="Upload" />
In the post back I can get and save the TextBoxFileDescription text but how do I upload the FileUpload1 file directly to Nirvanix, without having to upload it to our webserver first and without using eg. a Flash component?