ASP 101 - Active Server Pages 101 - Web01
The Place ASP Developers Go!

Please visit our partners

Windows Technology Windows Technology
15 Seconds
4GuysFromRolla.com
ASP 101
ASP Wire
VB Forums
VB Wire
WinDrivers.com
internet.commerce internet.commerce
Partners & Affiliates














ASP 101 is an
internet.com site
ASP 101 is an internet.com site
IT
Developer
Internet News
Small Business
Personal Technology
International

Search internet.com
Advertise
Corporate Info
Newsletters
Tech Jobs
E-mail Offers

ASP 101 News Flash ASP 101 News Flash


 Top ASP 101 Stories Top ASP 101 Stories
What is Adovbs.inc and Why Do I Need It?
An Overview of ASP.NET
Connections, Commands, And Procedures

QUICK TIP:
Basic authentication vs. NT Challenge and Response
Show All Tips >>
 Active Server News from 15seconds.com Active Server News from 15seconds.com
1) Microsoft Wades Deeper Into Systems Management
2) Vista Sales Better Than Expected
3) Ballmer Pushes The Dynamic in SaaS
4) Microsoft Speeds Toward Office Standard Approval
5) Not Quite Office on Demand For Microsoft
 DevX .NET Content DevX .NET Content
- Add MS AJAX Extensions to a Visual Studio 2005 Setup Project
- Eight Key Practices for ASP.NET Deployment
- Faster Search Results with the VS.NET IDE's Incremental Search Feature
- Configuring WCF Services and Getting Them Ready to Ship
- Getting Started with the Windows Live Tools
ASPWire News
7/1Working with Classes and Properties for Game Development in VB.NET in Visual Basic.NET
7/1ASP.NET MVC Tip #12 ￿ Faking the Controller Context
7/1How to Programmatically tell if an IIS AppPool is 32-bit or 64-bit
7/1Hotfixes on Code Gallery
7/1Aggiorno - Improving the web one tag at a time.
7/1Complex Data Binding with the Accordion Control
7/1Anonymous Types in the .NET Framework
6/30Avoiding Annoying Mistakes in Your ASP.NET Web Applications
6/30Use the Same Event Handler for Multiple Objects
6/30Enhancing PHP Via the ASP.NET AJAX Framework: A Second Look in ASP.NET


New  Move Settings Out of the Web.config File

Did you know that you can move sections of your Web.config file into other files? Whether it's to keep things tidy or simply to make it easier to find the settings you change often, it's easy to do and yet few people even realize you can.

New  Use the Same Event Handler for Multiple Objects

As a developer, repetitive code is your enemy. It takes longer to write, leads to larger files, and is harder to maintain. Which brings me to the point of this tip. Did you know that you can tie the same event handler to multiple objects? It's easy to do, but most people never think to try it.

New  Checkbox to Database Sample

This sample builds upon our original Checkbox sample by showing you how to display boolean data as a checkbox and then how to save the state of that checkbox back to a database.

How To Calculate Age

Determining a person's age given their date of birth seems simple enough, but I get a lot of email from people who can't seem to get the code working as it should.

46 New ASP.NET AJAX Control Toolkit Tutorials

Microsoft just published a series of 46 -- that's right 46! -- tutorials that provide step-by-step instructions for implementing the different controls in the ASP.NET AJAX Control Toolkit. If you've been putting off messing with AJAX, what can I say... sometimes procrastination does pay off!

A No-Frills Text File Editor

There are times when it's nice to have a full blown development environment like Visual Studio to mangage your site with, but there are also times when a simple little web app fits the bill perfectly.

Microsoft Releases Visual Studio 2008 SP1 Beta

For those of you who like to live on the bleeding edge, Microsoft has released beta versions of the forthcoming Visual Studio 2008 Service Pack 1 and .NET Framework 3.5 Service Pack 1.

Saving Data to an Excel File

People really love Microsoft Excel. Many users are so comfortable with Excel that they want to use it for everything. That's probably one of the main reasons I get so many requests about using Excel with ASP.NET. As it turns out, the real question most users want answered is how to store data from a Web page in an Excel-readable format?

Multi-Term Database Search ASP.NET Sample

This sample shows how you can use ASP.NET to query a database table for multiple search terms. Whether you want the results that match any of the search terms or you just want results that match all of them, the process really isn't as hard as you might think.

Economic Stimulus Payment Schedule ASP.NET Sample Code

Last week while I was talking with a friend of mine, he asked me a couple questions and then told me when I could expect my economic stimulus payment. This sample does the same thing. It's nothing fancy, but it does illustrate some basic form handling, conditional branching, and a good use of a Select Case statement. Give it a try... hopefully your payment is coming soon!

Sortable Date Format

Why do people insist on using mm-dd-year or dd-mm-year when creating log files? Are you really trying to see what happened on the same month of every year or the same day of every month? You might want to try this alternative, which when sorted numerically actually puts the files into chronological order.

Multi-Term Database Search

This sample shows how you can query a database table for multiple search terms. Whether you want the results that match any of the search terms or you just want results that match all of them, the process really isn't as hard as you might think.

Visual Studio 2008's Multi-Targeting Support

When people talk about new features in Visual Studio 2008, you'll usually hear them talk about improved Javascript Intellisense and debugging, amazing advances in CSS support, huge gains in the IDE's responsiveness, and the fact that Microsoft has given us mere mortals access to the actual source code of the .NET Framework libraries. But for the working developer, all those pale in comparison to a simple little feature called multi-targeting.

Visual Studio 2008's Mysterious Extra Bytes

I recently started getting some odd characters appearing when working with an old classic ASP application. I'd been using the same scripts for years and while I knew that nothing in the application had changed, we'd recently started using Visual Studio 2008 to create the application's data files.

Windows Server 2008, Visual Studio 2008 and SQL Server 2008 Launch Event

As I'm writing this, I'm not even sure what the official name of the event I attended today actually was. The phrase "Heroes Happen Here" was used a lot, as was the term "Launch Event". Well, whatever you call it, if you're interested in what Microsoft is up to these days and you're able to find one close to you, do yourself a favor and check it out.

Microsoft Releases Windows Vista Service Pack 1

While Windows Vista Service Pack 1 (SP1) has been available to MSDN subscribers for a while now, everyone else has been forced to wait to receive what Microsoft is calling "the benefit of a year's worth of improvements." Well that wait came to an end today...

Modifying a File's Timestamp

While everyone knows that you can manipulate text files and their contents via an ASP.NET Web page, did you know that you can actually modify a file's timestamps just as easily? Why would you want to do that? Read on to find out...

Editing Text Files

While you can append text to the end of a text file, there's no easy way to insert, edit, or remove text from a file. To do things like that, you'll need to read the text from the file, edit it, and then write it back out.

How to Show a Limited Number of Items from an RSS Feed

One of the most common questions I receive about our RSS consuming code is how to limit the number of items displayed. Luckily, it's relatively easy to do. Best of all, you can do it without any changes to the code by simply modifying the style sheet used to transform the RSS feed's XML to HTML.

Using DefaultButton and DefaultFocus with MasterPages

Last week we published a tip about using the DefaultButton and DefaultFocus properties of the HtmlForm object. A reader quickly informed us that he was having trouble using them on a site which uses MasterPages. Not to fret... you can still use the properties, you just need to do things a little bit differently.

DefaultButton and DefaultFocus Properties

ASP.NET 1.x made great strides in simplifying form management and processing, but it did miss a couple points when it came to filling forms out using the keyboard. Fortunately these oversights were quickly noticed by users and Microsoft responded in ASP.NET 2.0 by adding the DefaultButton and DefaultFocus properties to the HtmlForm object.

Use the Literal Control for Precise Rendering

While ASP.NET server controls make developing Web pages much simpler, sometimes they don't output their HTML exactly the way you'd like them to. That's where the Literal Web server control comes in. Unlike most other controls, it doesn't add anything to the output.

Microsoft Releases Service Pack 1 for .NET Framework 2.0 and 3.0

Last week, Microsoft quietly released .NET Framework 2.0 Service Pack 1 and .NET Framework 3.0 Service Pack 1. If your servers aren't configured to install updates automatically, now might be a good time to check and make sure you're up to date.

Support for CSS in Visual Studio 2008

It sure took Microsoft long enough to add decent style sheet support to Visual Studio, but man was it worth the wait. This article examines the new CSS capabilities available in Visual Studio 2008.


Home |  News |  Samples |  Articles |  Lessons |  Resources |  Forum |  Links |  Search |  Feedback



JupiterOnlineMedia

internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and JupiterOnlineMedia

Jupitermedia Corporate Info


Legal Notices, Licensing, Reprints, & Permissions, Privacy Policy.

Advertise | Newsletters | Tech Jobs | Shopping | E-mail Offers

Solutions
Whitepapers and eBooks
IBM eBook: Planning a Service Oriented Architecture
IBM eBook: Choosing the Right Architecture--What It Means for You and Your Business
Microsoft Article: Will Hyper-V Make VMware This Decade's Netscape?
Avaya Article: Using Intelligent Presence to Create Smarter Business Applications
Intel Go Parallel Article: Getting Started with TBB on Windows
Microsoft Article: 7.0, Microsoft's Lucky Version?
Avaya Article: How to Feed Data into the Avaya Event Processor
IBM Article: Developing a Software Policy for Your Organization
Microsoft Article: Managing Virtual Machines with Microsoft System Center
Intel Go Parallel Article: Intel Threading Tools and OpenMP
HP eBook: Storage Networking , Part 1
Microsoft Article: Solving Data Center Complexity with Microsoft System Center Configuration Manager 2007
MORE WHITEPAPERS, EBOOKS, AND ARTICLES
Webcasts
HP Video: StorageWorks EVA4400 and Oracle
HP Webcast: Storage Is Changing Fast - Be Ready or Be Left Behind
Microsoft Silverlight Video: Creating Fading Controls with Expression Design and Expression Blend 2
MORE WEBCASTS, PODCASTS, AND VIDEOS
Downloads and eKits
Red Gate Download: SQL Toolbelt and free High-Performance SQL Code eBook
Iron Speed Designer Application Generator
MORE DOWNLOADS, EKITS, AND FREE TRIALS
Tutorials and Demos
Silverlight 2 App and Walkthrough: Leverage Silverlight 2 with SQL Server and XML
IBM Article: Enterprise Search--Do You Know What's Out There?
HP Demo: StorageWorks EVA4400
Microsoft Article: The Progress and Promise of Deep Zoom
Microsoft How-to Article: Get Going with Silverlight and Windows Live
MORE TUTORIALS, DEMOS AND STEP-BY-STEP GUIDES