something to note with the SWFUploader is that although there is a .Net test project its a little miss leading and dose quite a lot more than is really required, its great if you want to upload images but dosnt have the progress bar or allow file uploads
to get any of the PHP demo working with .Net just make a file called upload.aspx to replace the upload.php with the following code in.
try
{
// Get the data
HttpPostedFile postedfile = Request.Files["Filedata"];
postedfile.SaveAs(Server.MapPath(".\\") + postedfile.FileName);
}
catch
{
// If any kind of error occurs return a 500 Internal Server error
Response.StatusCode = 500;
Response.Write("An error occured");
Response.End();
}
finally
{
Response.End();
}
and change the the default page name to html or .aspx and change the call inside to your new save script.
it will now save the files in the root of the website.