You are browsing the archive for asp.

by Editor

Microsoft Access 2010: How to Add, Edit, and Delete Data in Tables

May 15, 2012 in Articles, News, Reference

Tables are such an integral part of databases and corresponding tasks in Access 2010 because they act as the centers that hold all the data. They may be basic in format, but their role is undeniably important. So, to get you up to speed on working with tables, let’s begin adding, editing, and deleting data. These are very standard tasks that you will need to employ from time to time, so it is a good idea to start learning how to execute them now. As is sometimes the case with our tutorials, we will be working with a specific sample. To learn the tasks, read over the tutorial and then apply…

by Editor

ASP.NET Web API Updates – May 14

May 14, 2012 in Articles, ASP.NET, News, Reference

We have been on a roll with respect to changes over the last few weeks – here’s some of the highlights. If you want to see the full list then you can either track the commit page or follow the project which will then show you the updates on your codeplex home page . As in the previous update this is a sneak-peak of code checked into our CodePlex source code repository but not yet released as part of our official installer . See Using Nightly ASP.NET Web Stack NuGet Packages for how to try out these features. Per Controller Type Configuration ASP.NET Web API has a HttpConfiguration object that provides configuration for features including routing, dependency resolution, media type formatters, and message handlers. However, while the HttpConfiguration…(read more)

by Editor

How to Configure Microsoft Security Essentials

May 10, 2012 in Articles, News, Reference

Microsoft Security Essentials is the software giant’s free solution for home users as well as small businesses. As long as you have a genuine copy of Windows running on your PC, you can enjoy all it has to offer. The program is characterized by easy installation and a user interface that is intuitive and rather simple to navigate. With so many viruses, spyware, and other malicious items floating all around the Web, keeping your PC secure should be of utmost importance. After all, you want to protect your investment and your sanity at the same time. Having a solid program such as Microsof…

by Editor

Microsoft Access 2010: How to Format Reports

May 8, 2012 in Articles, News, Reference

While Access 2010 provides of multitude of functionality, it is its easy to use nature that is perhaps even more impressive. It comes with an intuitive interface that allows you to take full control after playing around with the program for a bit and becoming acquainted with its features. Still, you may be completely new to the program and are looking for some guidance on how to execute certain tasks. That is what this tutorial intends to do, as we look at a few different options you have when it comes to formatting reports. So, before we jump into formatting a report, let’s discuss some of…

by Editor

ASP.NET Web API Updates – May 3

May 3, 2012 in Articles, ASP.NET, News, Reference

Some interesting updates were checked in over the last week. As in the previous update this is a sneak-peak of code checked into our CodePlex source code repository but hasn’t yet been released as part of our official installer . See Using Nightly ASP.NET Web Stack NuGet Packages for how to try out these features. Per-Route Message Handlers Support for per-route message handlers has been a popular request on our issues list . The issue is that HttpMessageHandlers is a flexible extensibility point for dealing with HTTP requests and responses but they are configured once per application within the HttpConfiguration . In some scenarios you have different needs for different services so a more flexible registration is needed. Brad Wilson describes…(read more)

by Editor

Internet Explorer Security: How to Configure Settings

May 2, 2012 in Articles, News, Reference

Before jumping into the steps that are needed to configure Internet Explorer’s security settings, let us first take a closer look at the four separate security zones that Microsoft has established for the browser. You will be able to tweak the settings of each of these four zones when we get into the configuration part of this tutorial, so it is best that you learn what they represent first. Internet Explorer Security Zones Internet Zone This Internet Explorer security zone refers to websites that are not on your computer or are not designated to your local intranet, which we will discuss in …

by Editor

Etching sketches with a Netduino Go

May 2, 2012 in Articles, ASP.NET, News, Reference

Netduino Go is designed for much more than toy projects, but one has to recognize that toy projects are fun and also great learning experiences. Today, I want to take you through the process of reproducing the behavior of a famous toy that you will surely recognize. That toy, that has helped many of us realize what poor motor skills we possess, has two knobs that control the horizontal and vertical coordinates of a pen that draws into the dust on the back of a simple screen. It’s a great mechanical device that is part of western culture. Our version will use two potentiometers , a 320×240 LCD display , a button to erase the screen, and of course a Netduino Go . The hardware setup looks like the following: We connected the button to port 2 (but…(read more)

by Editor

Microsoft Access 2010: How to Customize Form Settings

April 30, 2012 in Articles, News, Reference

Since users have varying situations and needs when it comes to storing data, Microsoft equipped Access 2010 with capabilities that allow you to adjust specific settings for forms you want to create. These settings adjustments take place via the handy Property Sheet. That is where our focus will be for this tutorial, so let’s get started and begin customizing some form settings. Keep in mind, we are using a distinct sample for this tutorial, so just follow along as best as you can to see how the techniques are applied. You can then copy these simple techniques to your own samples to put them…

by Editor

Using Nightly ASP.NET Web Stack NuGet Packages

April 29, 2012 in Articles, ASP.NET, MVC, News, Reference

We are very excited about the recent announcement of nightly NuGet packages being available on MyGet . This blog will show using these packages with Visual Studio 2010 but first you should be aware of the disclaimers . In short, these packages come with no guarantees and they do not substitute for the official installers which contain the official MSI with NuGet packages. And of course, don’t use your dev machine for anything important. Prerequisites: Visual Studio 2010 and GacUtil In contrast to compiling the code yourself , it is possible to use the nightly NuGets with ASP.NET MVC 4 Beta for Visual Studio 2010 installed so that you can use the project templates. The instructions here are for .NET 4.0 and Visual Studio 2010 only – it won’t…(read more)

by Editor

ASP.NET Web API Updates – April 27

April 27, 2012 in Articles, ASP.NET, News, Reference

Here’s a few more updates coming your way in ASP.NET Web API. As in the previous update the code has been checked into our CodePlex source code repository but haven’t yet been released as part of our official installer . Think of this as a sneak-peak for you to try out and comment on as part of our source code repository (see Getting Started With ASP.NET Web Stack Source on CodePlex for details). Helper for Wiring up Message Handlers HttpMessageHandlers are pluggable “filters” that sit between HttpClient and the network and allow you to modify the request and/or response as they travel from a HttpClient to the network and back. HttpMessageHandlers are plugged together in a “Russian doll” model where each handler delegates to the inner handler…(read more)