When you think ASP, think...
Recent Articles
All Articles
ASP.NET Articles
ASPFAQs.com
Message Board
Related Web Technologies
User Tips!
Coding Tips

Sections:
Sample Chapters
Commonly Asked Message Board Questions
JavaScript Tutorials
MSDN Communities Hub
Official Docs
Security
Stump the SQL Guru!
XML Info
Information:
Feedback
Author an Article
Technology Jobs





ASP ASP.NET ASP FAQs Message Board Feedback ASP Jobs

WebWeekly Sign Up
Sign up for the Microsoft Tech Update, our weekly newsletter!
Windows Technology
Check out these Web sites for articles, tutorials, FAQs, and code on ASP and related Technologies!
VBForums.com
Developer.com
ASPFAQs.com
ASPMessageboard.com
DevX.com
CodeGuru.com

Recent ASP.NET and Related Developer Articles

Tech IQ: Do you know what it takes to build a C# app for Windows 8?


Mon, 20 May 2013 08:07:00 -0700
You might know C#, but do you have the knowledge necessary to start building a applications for Windows 8? Read More >

Using Unobtrusive Validation in ASP.NET 4.5 Web Forms


Fri, 17 May 2013 00:01:00 -0700
Updated: Earlier releases of ASP.NET validation controls depended upon JavaScript, emitted by the ASP.NET web form framework. Unobtrusive validation makes use of the data-* attributes of HTML5 for validation purposes. Bipin Joshi shows you how the new unobtrusive validation features work for Web Forms. Read More >

Obtaining External Window Handles and Window Captions with Visual Studio 2012


Wed, 15 May 2013 00:01:00 -0700
Learn how to obtain an outside application's window handle, in order to manipulate that window from inside your program, using either VB.NET or C#. Read More >

Using Cross Origin Resource Sharing (CORS) in ASP.NET Web API


Fri, 10 May 2013 14:19:00 -0700
Learn how to use ASP.NET API attribute to fine tune CORS at the global level, controller level or individual action level.  Read More >

Zip and Unzip Files Programmatically in C#


Fri, 03 May 2013 00:01:00 -0700
The .NET framework 4.5 introduces some new classes in System.IO.Compression namespace that allows you to deal with Zip files programmatically. Using these classes you can create new Zip files, open and modify existing Zip files and extract the contents of Zip files via code. This article examines some of these classes. Read More >

SOLID Principles in C# - An Overview


Wed, 01 May 2013 00:01:00 -0700
SOLID principles form the base for writing good and clean object oriented code in C#. Learn about the S.O.L.I.D principles and explore C# coding samples for each. Read More >

A Quick Introduction to Performance Counters in Visual Studio 2012


Mon, 29 Apr 2013 00:01:00 -0700
Hannes du Preez shares a quick and dirty introduction to performance counters in both VB.NET and C#. Read More >

Working with Arrays in C#


Fri, 26 Apr 2013 00:01:00 -0700
Although single dimensional arrays are most commonly used in C#, other varieties such as multidimensional arrays and jagged arrays are also available to C# developers. Additionally, the Array class comes in handy when it comes to sorting or searching an array.  Read More >

Implementing the Inversion of Control Pattern in C#


Wed, 24 Apr 2013 00:01:00 -0700
Arun Karthick explains Inversion of Control (IoC) in programming models and take you through some C# code examples to implement it.  Read More >

Using Preprocessor Directives in C#


Wed, 17 Apr 2013 00:01:00 -0700
Bipin Joshi shows you how to use C# preprocessor directives to instruct the C# compiler to alter the compilation process in some way. For example you may instruct the C# compiler that a particular block of code be excluded from the compilation process.  Read More >

Preventing Your Monitor from Going to Sleep with Visual Studio 2012


Mon, 15 Apr 2013 00:01:00 -0700
Sometimes it is necessary to prevent your monitor from going asleep while your program is active. Join Hannes du Preez as he shows you how to create a small program to prevent the monitor from going to sleep or the screensaver from popping up. Read More >

Printing Microsoft Access 2010 Reports from Visual Studio


Fri, 12 Apr 2013 00:01:00 -0700
Hannes du Preez demonstrates how to print a Microsoft Access 2010 report from within your C# or VB.NET program. Read More >

Working with Promises in Windows Store Apps


Wed, 10 Apr 2013 00:01:00 -0700
To deal with the complexity involved in asynchronous programming, Windows Store apps make use of what is known as a Promise. At code level a promise is an object that represents the result of an asynchronous operation and returns a value at some future point in time. This article discusses what Promises are and also shows how to use them in a Windows Store app. Read More >


Mon, 08 Apr 2013 05:29:43 -0700


Fri, 05 Apr 2013 03:12:41 -0700

Using SimpleMembership in ASP.NET MVC 4


Wed, 03 Apr 2013 00:01:00 -0700
SimpleMembership extends the ASP.NET core membership and role providers in such a way that you can use a custom database table to store user information. Bipin Joshi gives you step by step instructions to configure and use the SimpleMembership in ASP.NET MVC projects. Read More >

Creating a Windows Explorer Application with Visual Studio 2012


Fri, 29 Mar 2013 00:01:00 -0700
Join Hannes du Preez as he tackles the popular topic of how to create an application similar to Windows Explorer. Read More >

Making HTTP Requests in Windows Store Apps


Wed, 27 Mar 2013 00:01:00 -0700
Cross-domain requests in Windows store apps can be done using the WinJS.xhr() function. Bipin Joshi introduces you to the xhr() function and many of its configuration options, and illustrates how the xhr() function can be used to call ASP.NET Web API. Read More >

Sending Notifications using ASP.NET SignalR


Fri, 22 Mar 2013 00:01:00 -0700
Bipin Joshi shows you the basics of using SignalR, a library that allows you to perform real-time communication in web applications easily, in an ASP.NET web forms application.  Read More >

Highlighted ASP.NET Developer Articles

Use MvcContrib Grid to Display a Grid of Data in ASP.NET MVC

The past six articles in this series have looked at how to display a grid of data in an ASP.NET MVC application and how to implement features like sorting, paging, and filtering. In each of these past six tutorials we were responsible... Read More >

Creating PDF Documents with ASP.NET and iTextSharp

The Portable Document Format (PDF) is a popular file format for documents. Due to their ubiquity and layout capabilities, it's not uncommon for a websites to use PDF technology. For example, an eCommerce store may offer a "printable receipt"... Read More >

Filling in PDF Forms with ASP.NET and iTextSharp

The Portable Document Format (PDF) is a popular file format for documents. PDF files are a popular document format for two primary reasons: first, because the PDF standard is an open standard, there are many vendors that provide PDF readers across... Read More >

Using ASP.NET, Membership, and jQuery to Determine Username Availability

Chances are, at some point you've tried creating a new user account on a website and were told that the username you selected was already taken. This is especially common on very large websites with millions of members, but can happen on smaller websites with common usernames, such as people's names...Read More >

Focusing and Selecting the Text in ASP.NET TextBox Controls

When a browser displays the HTML sent from a web server it parses the received markup into a Document Object Model, or DOM, which models the markup as a hierarchical structure. Each element in the markup - the <form> element, <div> elements, <p>...Read More >

Displaying a Sorted, Paged, and Filtered Grid of Data in ASP.NET MVC

Over the past couple of months I've authored five articles on displaying a grid of data in an ASP.NET MVC application. The first article in the series focused on simply displaying data...Read More >

Pausing and Resuming the jQuery / ASP.NET News Ticker

Many websites display a news ticker of one sort or another. A news ticker is a user interface element that displays a subset of a list of items, cycling through them one at a time after a set interval. In December 2010 I wrote an article titled Use jQuery and ASP.NET to Build a News Ticker...Read More >

Software Developer / Programmer - Distributed Systems (NYC)
Next Step Systems
US-NY-New York

Justtechjobs.com Post A Job | Post A Resume


ASP.NET [1.x] [2.0] | ASPMessageboard.com | ASPFAQs.com | Advertise | Feedback | Author an Article