Great! Thanks ![]()
Discussions
-
Not having used TFS before, does anyone know of getting started guide?
-
I managed to resolve this, see here for details: http://channel9.msdn.com/Forums/Coffeehouse/MyComputerNetworkUploadFile
-
The Destination page, needs to deal with accepting the file, here's the code I used:
<%@ Import Namespace="System"%> <%@ Import Namespace="System.IO"%> <%@ Import Namespace="System.Net"%> <%@ Import NameSpace="System.Web"%> <Script language="VB" runat=server> Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Dim f As String Dim file For Each f In Request.Files.AllKeys file = Request.Files(f) file.SaveAs("c:\inetpub\test\UploadedFiles\" & file.FileName) Next f End Sub </Script> <html> <body> <p> Upload complete. </p> </body> </html> -
Thanks for the reply. I've not done anything with WCF. Will this work with the My.Computer.Network.UploadFile(filename and path, uri) ?
Sorry, part time dabbler in the art of programming.
-
Hi All,
I want to upload files from a windows form application and I'm trying to use My.Computer.Network.UploadFile(filename and path, uri)
But its not working for me, can anyone help? It's not clear what's required on the server side.
Many Thanks
Wayne -
Thanks for the reply. I did find those links myself. I'm not sure what is required in upload.aspx file, there's no sample/example of what is sent to that page and thus how to handle it. I have been trying to wrap my head around this all afternoon, hence why I posted to the community for help.
I've not posted to c9 for a while, I apologise if I posted in the wrong section. It would appear that c9 has changed.....

-
Hi All,
I want to upload files from a windows form application and I'm trying to use My.Computer.Network.UploadFile(filename and path, uri)
But its not working for me, can anyone help? It's not clear what's required on the server side.
Many Thanks
Wayne -
Thanks. I've palyed around with ASP.NET in the pass. I program mainly has a hobby, there seems an opportunity to do more programming via the day job. So I was looking at what I should be looking into.
Is MS still moving ASP.NET forward? Some people seem to think it's been abandoned ....
-
Thanks. I've palyed around with ASP.NET in the pass. I program mainly has a hobby, there seems an opportunity to do more programming via the day job. So I was looking at what I should be looking into.
Is MS still moving ASP.NET forward? Some people seem to think it's been abandoned ....