<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.asp.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Getting Started</title><link>http://forums.asp.net/15.aspx</link><description>The perfect forum for ASP.NET novices. No question too simple! &lt;A href="http://aspadvice.com/SignUp/list.aspx?l=21&amp;amp;c=17" target=_blank&gt;Email List&lt;/A&gt;</description><dc:language>en</dc:language><generator>CommunityServer 2007 SP1 (Build: 20510.895)</generator><item><title>Re: upoad all the files in a folder</title><link>http://forums.asp.net/thread/2443750.aspx</link><pubDate>Tue, 24 Jun 2008 16:35:51 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2443750</guid><dc:creator>James25</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2443750.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=15&amp;PostID=2443750</wfw:commentRss><description>&lt;p&gt;Hi! It can be done using silverlight and webservices though as I have heard but I didnt see any code samples. &lt;/p&gt;</description></item><item><title>Re: upoad all the files in a folder</title><link>http://forums.asp.net/thread/2426808.aspx</link><pubDate>Mon, 16 Jun 2008 21:55:02 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2426808</guid><dc:creator>AceCorban</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2426808.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=15&amp;PostID=2426808</wfw:commentRss><description>&lt;p&gt;I&amp;#39;d be curious to examine the activeX component a little more, but there are no controls&amp;nbsp;that will grab all subfiles on a selected folder.&amp;nbsp; You can&amp;#39;t really implement one in javascript because&amp;nbsp;it doesn&amp;#39;t have access to grab too much information from the user&amp;#39;s computer and even if activeX did, your user would have to install it and enable it each time they wanted to use it.&amp;nbsp; I actually liked that guy&amp;#39;s dhtml example, but as you mentioned, that is rather annoying when having to select 100 photos.&amp;nbsp; The flash part was pretty slick, but that will require you to be able to implement the flash piece, and it can be tricky to interoperate flash with server actions if you don&amp;#39;t know what you are doing.&amp;nbsp; It was because of these reasons that I stuck with using zip files.&amp;nbsp; This, of course, carries its own set of cons, but it was the best solution for my needs.&lt;/p&gt;</description></item><item><title>Re: upoad all the files in a folder</title><link>http://forums.asp.net/thread/2426768.aspx</link><pubDate>Mon, 16 Jun 2008 21:34:22 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2426768</guid><dc:creator>James25</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2426768.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=15&amp;PostID=2426768</wfw:commentRss><description>&lt;p&gt;Hi! Is there a way to have a routine list folders in a directory then select a folder and upload all files in that folder at one time? I looked at the examples in the link, but in my case I have a folder that has 100 pictures and It&amp;#39;ll take a long time if I want to upload one file at a time. Thanks!&lt;/p&gt;</description></item><item><title>Re: upoad all the files in a folder</title><link>http://forums.asp.net/thread/2426758.aspx</link><pubDate>Mon, 16 Jun 2008 21:27:12 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2426758</guid><dc:creator>AceCorban</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2426758.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=15&amp;PostID=2426758</wfw:commentRss><description>&lt;p&gt;I couldn&amp;#39;t find any way to support uploading an unknown (at runtime)&amp;nbsp;number of files to a server.&amp;nbsp; You could build controls to add an upload control on a user&amp;#39;s action, but that isn&amp;#39;t very intuitive for a user and can be a pain if there are more than a couple files.&amp;nbsp; I had to resort to uploading a zip file and unzipping it on the server.&amp;nbsp; It works ok.&amp;nbsp; I used a 3rd party zip utility to handle zipping/unzipping:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx"&gt;http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Re: upoad all the files in a folder</title><link>http://forums.asp.net/thread/2426751.aspx</link><pubDate>Mon, 16 Jun 2008 21:21:35 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2426751</guid><dc:creator>johram</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2426751.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=15&amp;PostID=2426751</wfw:commentRss><description>&lt;p&gt;It is not possible to select multiple files in the default file selection dialog. So either you have to resort to an Active X component that allows multiple upload, a Flash upload component or you could use a pimped &amp;quot;default upload&amp;quot; construct with which you can upload multiple files in one go (although you have to select them individually).&lt;/p&gt;&lt;p&gt;Example of Active X component: &lt;a href="http://www.activexpowupload.com/" target="_blank"&gt;http://www.activexpowupload.com/&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Example of Flash component: &lt;a href="http://www.element-it.com/MultiPowUpload.aspx" target="_blank"&gt;http://www.element-it.com/MultiPowUpload.aspx&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Example of DHTML component: &lt;a href="http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element/" target="_blank"&gt;http://the-stickman.com/web-development/javascript/upload-multiple-files-with-a-single-file-element/&lt;/a&gt; &lt;br /&gt;&lt;/p&gt;</description></item><item><title>upoad all the files in a folder</title><link>http://forums.asp.net/thread/2426707.aspx</link><pubDate>Mon, 16 Jun 2008 20:54:34 GMT</pubDate><guid isPermaLink="false">4c671506-2930-414c-a40b-8bf57ded5924:2426707</guid><dc:creator>James25</dc:creator><slash:comments>0</slash:comments><comments>http://forums.asp.net/thread/2426707.aspx</comments><wfw:commentRss>http://forums.asp.net/commentrss.aspx?SectionID=15&amp;PostID=2426707</wfw:commentRss><description>&lt;p&gt;Hi! Is there an example on how to upload all the files from a folder A to a folder A in the server. Thanks for any tips!&lt;/p&gt;</description></item></channel></rss>