,ASP.NET,JAVASCRIPT,JQUERY
This method allows the upload of any file type to a WCF Service which then stores it on the server. While researching uploading I came across the following Silverlight 2 Beta 1 limitations that led to my solution: BassicHttpBinding. …
This method allows the upload of any file type to a WCF Service which then stores it on the server. While researching uploading I came across the following Silverlight 2 Beta 1 limitations that led to my solution: BassicHttpBinding. … Create the Service function that consumes an uploaded file and stores it to the file system [sourcecode language="csharp"] public void StoreFile(FileUpload UploadedFile) { FileStream FileStream = new FileStream(HttpContext.Current.Server. …
View original post here:
Michael Sync » Blog Archive » Uploading with Silveright 2 Beta 1 …