Archives
All Posts Tagged
Tag: ‘.net’

In research of a javascript library to be used with ASP.NET on my next project…

Hi fellow readers, Today I come to share with you how I choose a javascript library to be used on my new project. I’m not talk about choosing just an AJAX library but I want some ‘full’ set of library which including both AJAX core and user interface core. Here are my choices before consideration… …

Read More

Why you need validation in your web application?

Hi folks, Did you ever use ASP.NET validation controls? If you never heard or never use it before, see on the toolbox at the “validation” group. Those are all validation controls. – RequiredFieldValidator – RangeValidator – CompareValidator – RegularExpressionValidator – CustomValidator – ValidationSummary The main point of this control group is to be used to …

Read More

Cryptography in .NET – Part I

Hi folks, Today, let’s see what .NET was provided to developer like us about cryptography. In this post, I’ll talk about a brief of cryptography. How .NEt handle it and how many way to do some cryptographic in .NET. For sample of implementation, I’ll cover it all from basic encryption to decryption, hashing, using message …

Read More

7 Tips made rendering HTML faster (Do it lately!)

Any serious web developers should experience a too long rendering time for his/her web pages. Here is the list that I usually do it before release my web application to production stage. I call it my “Optimization check-list”. Please note that, some of tip should be used on ASP.NET specifically and any other may not. …

Read More

Prevent your .NET application from SQL Injection

Hello everyone, Now I’ll talking about a technique that script kiddies widely used to attack to the first wall of your application. If you’re a rookie for security topics on development then you may never heard about this before. In my .NET courses training experiences, most of my trainees never know about this issue before …

Read More

Real world ASP.NET authentication

Hello everyone, I’m here to say that most of ASP.NET books on the market didn’t provide you the effective way to use authentication cookies. Assume that when you’re working with form-based authentication. (Setting in web.config) When we do some manual authentication method, we imports System.Web.Security and using FormsAuthentication.RedirectFromLoginPage(“userName”, false). The ASP.NET authentication engine will automatically …

Read More

Create RSS Feed from your data with .NET

Hello, Today I’ll give you a quick guide on how to create RSS Feed channel from your existing data. Before we go to the implementation, let’s see a brief overview of What is RSS, Feed or Atom? RSS, Feed or Atom is a format name of the method for latest generation webmaster to feed their …

Read More

VB.NET vs C# – Who will win?

Hi all, This is my first post on blog about Microsoft .NET development. So, let me say a little sorry about my bad English. Let’s go to those day that C/C++ language dominating Visual Basic all the time. If I can remember it takes more than ten years now since Visual Basic for DOS (1.0). …

Read More

Great 3rd party Ajax control suite

Have you ever tried Ajaxify your ASP.NET application? Have you tried and tired? I’m one of those guys who already tried and tired on ajaxify the application to fully working in Ajax basis. Until the day I found one of a great Ajax control suite named Telerik RadControls for ASP.NET. It was combined by various …

Read More