.NET news » Search results

Search results for query "System" (117):

Team Foundation Server and Exchange: Build a Ticketing System Using Exchange and Team Foundation Server

What do you get if you combine the Team Foundation Server work item tracking functionality with the Exchange Web Services push notification? A unified support ticketing system that integrates e-mail and work items. Mohammad Jalloul shows you how to build it.

Integrating .NET Code and SQL Server Reporting Services

SQL Server Reporting Services versions 2000 and 2005 (SSRS) has many powerful features. SSRS has a well-designed data access engine, a great set of layout tools, and an excellent expression system for creating complex formulas. While the expression system is quite powerful it is not suitable for all applications. This is where SSRS shines. SSRS gives developers the ability to add custom code to their report layouts. This article demonstrates adding custom code to SQL Server Reporting Services reports.

2006-12-28 18:00:00   Source: Integrating .NET Code and SQL Server Reporting Services   Tags: Database

Manage_Sql_Server_Database

Manage Sql Server Database within Visual Studio Team System
2011-01-23 23:45:00   Source: Manage_Sql_Server_Database   Tags: Visual Studio

FUSE(file system in userspace) for MS-SQL using C#

Map your database table as network disk
2010-08-19 08:00:00   Source: FUSE(file system in userspace) for...   Tags: C#

What's new in System.Xml 2.0

Just as XML itself has evolved, so the XML related classes in .NET Framework 2.0 have changed. Alex Homer finds out what's different.
2006-01-30 05:01:00   Source: What's new in System.Xml 2.0   Tags: XML

An Overview of Cryptographic Systems and Encrypting Database Data

As the attacks in which hackers use become more and more sophisticated, and the programs in which they attack become increasingly complex, encryption is becoming the last line of defense in database management system (DBMS) security. Since Microsoft announced their Trustworthy Computing security initiatives four years ago, the industry has been waiting to see how these initiatives would be implemented in upcoming products. With the introduction of Microsoft's newest DBMS, SQL Server 2005, it does indeed seem as though they have provided what they have promised.

What follows is a two-part article series that provides an in-depth examination of encrypting data in SQL Server 2005. In this article we will exploring key challenges facing database systems and the motivations for providing robust encryption mechanisms directly within the database system. We will also look at encryption fundamentals and SQL Server 2005's encryption capabilities.

2007-02-13 18:00:00   Source: An Overview of Cryptographic Systems...   Tags: ASP.NET Security

Using Ink on the Web

One of the more interesting and challenging places to use Ink is in Web applications. But how can this technology, which is dependent on the physical relationship between the stylus, the digitizer, and the operating system, work over the Internet?
2006-03-21 16:46:10   Source: Using Ink on the Web   Tags: Tablet PC

Examining ASP.NET 2.0's Membership, Roles, and Profile - Part 18

Membership, in a nutshell, is a framework build into the .NET Framework that supports creating, authenticating, deleting, and modifying user account information. Each user account has a set of core properties: username, password, email, a security question and answer, whether or not the account has been approved, whether or not the user is locked out of the system, and so on. These user-specific properties are certainly helpful, but they're hardly exhaustive - it's not uncommon for an application to need to track additional user-specific properties. For example, an online messageboard site might want to also also associate a signature, homepage URL, and IM address with each user account.

There are two ways to associate additional information with user accounts when using the Membership model. The first - which affords the greatest flexibility, but requires the most upfront effort - is to create a custom data store for this information. If you are using the SqlMembershipProvider, this would mean creating an additional database table that had as a primary key the UserId value from the aspnet_Users table and columns for each of the additional user properties. The second option is to use the Profile system, which allows additional user-specific properties to be defined in a configuration file. (See Part 6 for an in-depth look at the Profile system.)

This article explores how to store additional user information in a separate database table. We'll see how to allow a signed in user to update these additional user-specific properties and how to create a page to display information about a selected user. What's more, we'll look at using ASP.NET Routing to display user information using an SEO-friendly, human-readable URL like www.yoursite.com/Users/username.

WinForms.ColorDialog in WPF

System.Windows.Forms.ColorDialog in a small WPF project TextEditor
2011-09-15 13:18:00   Source: WinForms.ColorDialog in WPF   Tags: WPF

The OOP approach on MVC UI - System.Web.UI.Controls

How to work with Controls as fully typed objects on the MVC .ascx FormControls
2010-12-07 06:40:00   Source: The OOP approach on MVC UI -   Tags: Components