ASP.NET News from Blogger: DevX: .NET Feed   Get the feed of: DevX: .NET Feed

Total News: 552

Windows Mobile Application Development with ASP.NET MVC 4.0

Step by step instructions for using ASP.NET MVC 4.0 instead of ASP.NET Web Forms to create Web applications....

Using Fluent NHibernate for XML-Free Class Mapping

Fluent NHibernate lets you map .NET classes with NHibernate without the need for those cumbersome XML files....

Microsoft Unveils Preview of Roslyn Compiler-as-a-Service

The new service allows developers to see what happens when compilers take source code and turn it into machine code....

What Are Philosophy-Based Design Patterns?

Software engineering is largely about analyzing a portion of the real world and translating it into a software system. What could be a richer source for ideas about reality analysis than philosophy?...

Development Considerations in SQL Azure

Developing applications for Microsoft SQL Azure Database is very similar to developing applications for SQL Server. Click here to learn a few differences and some considerations when developing SQL Az...

ADO.NET Entity Framework 4: New and Notable Features

Leverage the new and enhanced features of ADO.NET Entity Framework 4.0 to model at the right level of abstraction....

Using OData Services in ASP.NET Applications

Take advantage of the Open Data Protocol to build RESTful services in ASP.NET....

Mono Development 101: Build Linux Desktop Apps with .NET

Mono and the MonoDevelop IDE let you build Linux desktop applications using the .NET Framework. Find out how an open source guy with minimal .NET experience did it....

Expensify CEO: Why We Don't Hire .NET Programmers

Expensify CEO David Barrett compares .NET application development to making hamburgers at McDonald's....

Merge XML files into a PDF Document in .NET

Learn how to merge XML files into a PDF document in .NET....

How to Use the Visual Studio Code Analysis Tool FxCop

The integrated static code analysis tool an help you find and correct bugs in your software development....

Developing Applications for Microsoft Dynamics AX with X++ and the .NET Framework

CodeGuru explains how to customize Microsoft's ERP application....

Unit Test .NET Business Objects Using Nmock Library

Nmock is a unique way to test complex business objects in your development environment....

How to Manipulate Images with .NET Programs

Learn how to add sophisticated area effects to your images such as blurring, embossing, and drop shadows in C# or Visual Basic....

Visual Basic Book Excerpt: Useful Namespaces

This chapter provides an overview of some of the most important system namespaces and gives more detailed examples that demonstrate regular expressions, XML, cryptography, reflection, threading, paral...

Referencing External Configuration Files in .NET

Use two separate configuration files to represent settings for development and production environments....

Featured Tip: Convert a PPT File into an Image or HTML File in .NET

Get the .NET code for programmatically converting PowerPoint presentation files into images or HTML files....

Convert a PPT File into an Image or HTML File in .NET

Get the .NET code for programmatically converting PowerPoint presentation files into images or HTML files....

Programmatically Retrieve a System's Logical Drive Information with C#

Use C# and the System.Management namespace to retrieve information about logical drives in a given system....

Create a Web App Using ASP.NET MVC 2.0 Framework

The benefits of using an MVC Framework is that it helps enforce a clean separation between the models, views, and controllers within a Web application....

Manipulating Images with .NET Programs

Many image processing techniques are simpler than you might expect and can be implemented easily in C# or Visual Basic....

Auto-generate Visual Studio Project Documentation with GhostDoc

GhostDoc is a free Visual Studio extension that automates the process of writing code comments. Find out how you can use it to document your code automatically....

Use the Cassia .NET Library to Detect Users Connected to Windows Server

Thanks to the Cassia .NET Library, you can programmatically detect the users connected to Windows Server without using PInvoke to call the Windows Terminal Services API....

DynaTrace Beefs Up Support for Microsoft Applications

The application performance management vendor ups support for platforms such as SharePoint Server, Dynamics CRM, and Visual Studio 2010....

Moonlight Feels Right for Mono 2.6

Moonlight 2.0 is a Silverlight 2.0-compatible framework that supports Zoom, Control Framework, Layout Framework, and other technologies....

Microsoft-Compatible APIs in Mono 2.4

Mono is a cross-platform development framework that allows developers to build Linux apps with improved productivity....

Make Your WPF Applications Adapt to the Host Machine

Use WPF's ability to recognize and adapt to the graphics capabilities of its host machine to improve your application's performance....

Globally Register User and Custom Controls in ASP.NET

Avoid having to include the command on every page that needs a custom or user control....

Productivity Improvements in Mono 2.4: Components and Architecture

Take a look under the hood of the latest version of Mono, the open source .NET development framework. Find out how its components and architecture help make developers more productive....

Serialize Any .NET Object to a JSON String

With JSON's popularity increasing by leaps and bounds, you'll find this technique useful....

ASP.NET Workaround: Calling a JavaScript Function from a HyperLinkField in a GridView

You can call a JavaScript function when a user clicks a HyperLinkField in a GridView controlyou just need to use this workaround....

Detect Recursive Calls in Your .NET Code

Using System.Diagnostics, you can check the recursion levels in your code....

Create ASP.NET Dynamic Hyperlinks from URLs Stored in Web.Config

It's useful to store URLs outside of your application code, because they can change....

Quickly Determine Whether a Column Is Fully Visible in a DataGridView

Find out whether a DataGridView column is partially hidden....

Add an Image Command Field to a GridView at Runtime in ASP.NET

Programmatically adding an image command field to a GridView is relatively easy. This tip shows how....

The Best Way to Hide a Column in a DataGrid

A better approach than "hiding" the columnis in a DataGrid is simply to avoid creating the column in the first place, as shown in this tip....

Java/.NET Interoperability: Web Services Aren't Always the Answer

Mixing .NET and Java technologies with web services is often easy, but for many tasks web services are not the solution for Java/.NET interoperability....

Generate Metatags for ASP.NET Pages Dynamically

Including metatags in your pages is useful, but also tedious and error-prone. Learn how to create them automatically....

WPF Wonders: Building Control Templates

WPF's properties and styles let you change a control's appearance. Templates let you modify a control at a much more fundamental level, changing the components that make up the control and the way it ...

Deploying the CrystalReportViewer Control to a Production Web Site

Follow this procedure to deploy a CrystalReportViewer control to a production ASP.NET web site....

Disable the Standard Windows Close, Minimize, and Maximize Buttons

In .NET Windows Forms, disabling the standard Windows close, minimize, and maximize buttons is as simple as setting the Window Style or adding one line of code....

Access ASP.NET Form or Control Values from One Page in Another Page

You can access form or control values from one page in another page in ASP.NET, it just isn't intuitive....

Displaying Row Numbers in a DataGrid

Create a running number column that shows the row number in a DataGrid control....

Create an Interface from a Class in Visual Studio

Use Visual Studio's refactoring features to extract class methods into an interface....

Convert a Delimited String to a Generic List<string>

Split the string at the delimiter and then add each item to a new string list....

How to Remove Version Control Bindings from Visual Studio Solutions

When you don't want your solution bound to Visual SourceSafe, follow this procedure....

A Quick Way to Generate Properties in Visual Studio C# Projects

Don't write property setters and getters by hand--generate them!...

Call PowerShell Cmdlets from C#

Take advantage of pre-written cmdlet functionality in your own applications....

Publishing 32-Bit ASP.NET Applications to a 64-Bit OS

You can publish applications compiled in 32-bit mode on 64-bit systems, but you have to do a bit of setup work....

Preserve Browser Scroll Position After a Postback

When a user posts values back to the server, you can maintain the same scroll position after the response using these methods....

View Other bloggers