Authorization in ASP.NET applications

In general, two approaches to Authorization are possible for ASP.NET applications. First is role based, users are grouped in application-defined roles. Members of a particular role share same privileges within the application. Access to operations is authorized based on the role-membership of the caller. Resources are accessed using fixed identities (such as Web application’s or Web service’s process...

Scale your application to handle more users

There are two common ways to scale your application to handle more number of users, more data volume or a combination of both. Scaling up is one of the two methods under which you increase the capability of a server by adding more hardware, such as more memory, more processor power, more network ports, etc. It does not...

Grid View control in ASP.NET 2.0

ASP.Net 2.0 replaces the good old classic DataGrid control with the GridView control. Do you remember what all steps you used to take care of to allow the pagination in the data grid? ASP.NET 2.0 makes it simpler with the Grid View control.This control is much like the DataGrid server control, but the GridView server control (besides offering...

Ensuring application is Secure by design

You can follow the guidelines listed below for ensuring that your application is Secure By Design. · When you application stores or transmits data that attackers want, use Cryptography. You can implement encryption yourself or require your end users to use platform encryption features such as Encrypting File System (EFS), Secure Sockets Layer (SSL) or IP Security (IPSec).o...

SQL Injection attacks

Some of you might have heard about SQL Injection attacks. SQL Injection attacks insert database commands into user input to modify commands sent from an application to a back-end database. Applications that employ user input in SQL queries can be vulnerable to SQL injection attacks.Sample:Consider the following simplified C# source code, intended to determine whether an order number...

Partitioning in databases

When databases grow large, it is ideal to identify tables containing high volume of data and split them into multiple smaller sets of tables. This approach is called partitioning. Performance and manageability are the primary benefits. Partitioning can be done in one of the two ways, viz, horizontal and vertical. Horizontal partitioning involves creating logical groups of data...

Debug Stored Procedure in .NET managed code

Did you know that it is possible to debug a stored procedure by tracing down the execution steps from managed code? If your answer is no, here is what you need. Open a Windows application or ASP.NET project where you are invoking a stored procedure. Set a breakpoint in the step preceding the SQL call. Open Server explorer,...

Performance features in .NET framework 2.0

Performance considerations have a major impact on user acceptance of an application. In view of the same, measurement of performance is critical to any application. If and when there is a performance problem reported by an end user, a process needs to be followed to diagnose and troubleshoot the problem. Though this process differs from company to company...

Page 1 of 141234514Next

Followers

Powered by Blogger.