.NET Tutorials, Forums, Interview Questions And Answers
Welcome :Guest
Sign In
Register
 
Win Surprise Gifts!!!
Congratulations!!!


Post New Web Links

Download eBooks

Posted By: Jean Paul     Posted Date: October 22, 2010    Points: 2   Category :.NET Framework
 
We can download multiple ebooks from here which are related to programming in .Net


View Complete Post


More Related Resource Links

Download ebooks

  
Search on the appearing textbox like:
c# books

Download and Share Visual Studio Color Schemes

  
The good news is that Visual Studio allows you to completely customize the editor background and text colors to whatever you want - allowing you to tweak them to create the experience that is "just right" for your eyes and personality. You can then optionally export/import your color scheme preferences to an XML file via the Tools->Import and Export Settings menu command.

Free e-books Download

  
This is the link where we have get free e-books for downloading

how to know when a user finish his file download successfully ?

  

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

 

 


where can i download from SSRS?

  

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


Ten Essential Tools: Visual Studio Add-Ins Every Developer Should Download Now

  

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


.NET Tools: Ten Must-Have Tools Every Developer Should Download Now

  

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.

James Avery

MSDN Magazine July 2004


Download forum free for .net

  

Hello,

I search to download forum free for .Net plateforme,

 

 

Merci 


Download db from web

  

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 ?


File Download Problem

  

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);

     
Categories: 
ASP.NetWindows Application  .NET Framework  C#  VB.Net  ADO.Net  
Sql Server  SharePoint  Silverlight  Others  All   

Hall of Fame    Twitter   Terms of Service    Privacy Policy    Contact Us    Archives   Tell A Friend