Browse by Tags

All Tags » ASP.NET (RSS)

Free Magazine Article on Custom Controls, Silverlight and ASP.NET 2.0 Reporting

ASP.NET PRO has just released it's PDF version of it's printed magazine for free for all to download. March 2008 April 2008 May 2008 Some really cool articles on the following topics for your reads: Ajax Enabled Services WCF Services ExpertPDF HTML to PDF Silverlight On-demand XAML Extention Methods GMP CMS 2.0 Server Viewstate Visual Studio 2008 Options RadControls for ASP.NET

Free ASP.NET Pro Magazine (PDF Version)

Click on the issues for the direct download link.
Posted by Technical Bits
Filed under: , ,

Migrating to ASP.NET from PHP

Microsoft and Dr. Dobb's had recently jointly released and sponsored a couple of webcasts and labs for PHP developers to move on to ASP.NET 2.0 and Ajax. The recommended learning modules for this track are listed below and have already been pre-selected for your convenience. You may remove any webcasts or Virtual Labs that you would rather not attend, or add additional modules from other series topics. To continue with registration, select the "Next" button. Comparing PHP with ASP.NET 2.0 Hide Join this webcast as we compare PHP; Hypertext Preprocessor (PHP) with Microsoft ASP.NET version 2.0 from the perspective of developers who must have a working knowledge of both scripting languages. We provide detailed information about the tools, syntax, ecosystem, runtime, platform support, and futures of each language. Whether you must choose between these Web development technologies or plan to use both ASP.NET and PHP, this session can help you understand the advantages and disadvantages of both...
Posted by Technical Bits
Filed under: ,

Web.Config Configuration Encryption

Recently, I've been working on quite a number of projects to do with enterprise web application development, and many a times, I got request to have all encryption strings encrypted. Of course, even if they didn't tell me to do so, I'd also do so as it's just too dangerous to keep it in plaintext. So do you have to specifically write a special dll to do this task or use the cryptographic services in .NET to do so? The answer is no! ASP.NET 2.0 provides you such capabilities. Infact, this has already been available in ASP.NET 1.1. Just that ASP.NET 2.0 includes the option to do so with DPAPI too! ASP.NET 2.0 supports two forms of encryptions: RSA (a form of asymmetric encryption) DPAPI RSA is recommended as DPAPI makes use of key that are machine-specific. So that doesn't sound too portable. Well, as RSA is a 1024 bit block encryption, if you do want to encrypt data-strings larger then that, you might want to consider making use of Envelop Encryption, where you'd Generate a random private...
Posted by Technical Bits
Filed under: ,

.NET 3.0 Myths

" I've just learnt .NET 2.0! Is Microsoft crazy? Coming out with an entire new framework so soon? " is the common misconception that many developers have about .NET 3.0. Just to dimystify the myth, .NET 3.0 is just an addition to .NET 2.0, with 4 main components Windows Communication Foundation Windows Presentation Foundation Windows Workflow Foundation Windows CardSpaces ASP.NET 2.0, C# 2005, VB 2005 and etc remains exactly the same. There be changes in ASP.NET and the likes in .NET 3.5 which might...
Posted by Technical Bits
Filed under: , ,