View Complete Post
hi all
i am doing a page to sell files online
the paying method is by a card or bank account and the customer is not registered to the site so i want to make sure that the customer has downloaded the file successfully after that the system completes the payment operation
so if there is any way to know do that tell me please
i use c# thanx all
Hi all,
My machine is alread installed with Sql Server 2005. I need to install sql server 2005 reporting services as a add-on.
Where can i download this from. Can anyone post the link here..?
Thanks in advance
Suresh
James Avery does it again with his popular list of developer tools. This time he covers the best Visual Studio add-ins available today that you can download for free.
James Avery
MSDN Magazine December 2005
This article introduces 10 development tools that can increase your productivity, give you a better understanding of .NET, and maybe even change the way that you develop applications. The tools covered include NUnit to write unit tests, Reflector to examine assemblies, FxCop to police your code, Regulator to build regular expressions, NDoc to create code documentation and five more.
MSDN Magazine July 2004
Hello,
I search to download forum free for .Net plateforme,
Merci
Hi,
I want add a download backup button to my site and when the user click the mssql database will start downloading to user computer.Can i do this ?
Hi everyone,
I am using a download handler to handle the downloading of files from my website. I am using a slightly modified code from the Microsoft article http://support.microsoft.com/kb/812406
Everything is working fine and downloading, even with large files, but it does not show the file size for any of the files to download. Even if theyre really small.
Here is my code for the handler
public class DownloadHandler : IHttpHandler { public void ProcessRequest(HttpContext context) { string path = ""; try { path = context.Server.UrlDecode(context.Request.QueryString["src"]).DecryptString(); } catch(Exception ex) { context.Response.Write(ex.Message); } System.IO.Stream iStream = null; byte[] buffer = new Byte[10000]; int length; long dataToRead; string filename = System.IO.Path.GetFileName(path); try { iStream = new System.IO.FileStream(context.Server.MapPath("~/" + path), System.IO.FileMode.Open, System.IO.FileAccess.Read, System.IO.FileShare.Read);
Hall of Fame Twitter Terms of Service Privacy Policy Contact Us Archives Tell A Friend