Asp.net File Upload Control Using with just one step
In our projects sometimes we need to use the file upload control. Asp.net 2.0 have a build-in File-upload. In asp.net 1.x web controls didn’t had any builtin file-upload control. Then we had to use a html input tag with type attribute set to “file” and to use in server side add ru...
[More]
VS templates not working? Easy to get things back.
Recently I had to work with window SharePoint Service 3.0 and its development. I download the visual studio 2005 project templates for SharePoint development. I downloaded the project msi from Microsoft download site. http://download.microsoft.com/download/e/8/a/e8aa8476-5af6-4f38-aed2-0247a99d2bc...
[More]
Install assembly into Global Assembly Cache
Option One Step One add the sn.exe to External Section of VS2005 1. Click on Menu->Tools->External Tools 2. A window with all external tool listed will popup.. click on add button 3. In title type “String Name tool” 4. In command brows for sn.exe tool [Generally in the bin directory...
[More]
Try.Catch. is not a good Practice
I don’t know using try catch in your code is good or bad. But I am sure that it makes your code run more slowly. For the early edge of my programming carrier I believed that c# language has managed the try catch or exception handling quite well. So we can use try catch as much as we can in our code ...
[More]