You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
i need to allow users to save files to my site without the use of a web form. as i'm not able to retrieve any of the file properites via the form field, how do i go about saving the file from the raw http post stream?
tks in advance
Peter Bromberg [C# MVP]
unread,
Jan 30, 2007, 1:58:01 PM1/30/07
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to
Unless you can enable WebDAV, you will need to figure out some way to enable your users to pass filename information. Otherwise, all you need to do is save the Request stream of posted byte data. Peter