Articles
DevASP - ASP and XML Articles, Samples, Toturials, Sample Chapters and resources for Developers Saturday, February 04, 2012
Home
Articles & Samples
Dev Search
Sample Chapters
Link to US
Contact
Search Directory
Applications
Articles & Samples
Components
Community
Database
Developer Sites
Downloads
Hosting Services
Introduction
Knowledge Base
Sample Chapters
WebCasts
ASP Directory
Applications
Articles & Samples
Components
Developer Sites
Knowledge Base
Sample Chapters
WebCasts
XML Directory
Applications
Articles & Samples
Developer Sites
Error, Bugs & Fixes
Downloads
Introduction
Knowledge Base
Sample Chapters
WebCasts

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home/Search / What's New
Search Result: Found 30 sites     

Extending the Win Forms Binding Source Component       
Total Hits: 415  |  Today: 0 Author: David Catherman       Rating:  
Read Reviews | Write Review |              Your Rating: 

The binding source component in Visual Studio 2005/2008 Windows Forms provides a valuable service for data driven applications by providing automatic data binding between controls and the data source. This article shows how the functionality can be extended to add a few features to make it more useful. The most important is marking records as dirty when edited and prompting the user to save when changing records....

Managing FTP Transfers from an ASP.NET Web Page       
Total Hits: 318  |  Today: 0 Author: John Peterson       Rating:  
Read Reviews | Write Review |              Your Rating: 

I was recently working on a project in which one of the requirements was that certain query results be sent to a different company via FTP. Granted things would have been much easier if the receiving company had simply set up a web service, but that didn't seem to be an option. They had their little FTP system already set up and had no interest in changing anything....

Using OpenSearch to Create a Multi-Search Form       
Total Hits: 288  |  Today: 0 Author: John Peterson       Rating:  
Read Reviews | Write Review |              Your Rating: 

For the past 10 years or so, instead of simply using a search engine as my browser's start page, I've been using my own self-designed page. The page may not look like much, but what it lacks in looks, it more then makes up for in functionality. It has links to the sites and admin pages that I tend to access frequently, search boxes to send queries to the sites I often search, stock quotes for a few different stock symbols, the latest headlines from some RSS feeds, a link to the company phone lis...

Designing N-Tiered Data Access Layer Using Datasets - Part 4       
Total Hits: 309  |  Today: 0 Author: David Catherman       Rating:  
Read Reviews | Write Review |              Your Rating: 

Part of the business logic encapsulated in the Typed DataSet is the ability to add specialized queries to the table adapters to retrieve the data with different filters. By manipulating the XML schema that defines the dataset and adding the correct XML metadata, Visual Studio will generate the added queries for us. In this article, filtering queries will be automatically added to each table adapter for each field that is indexed on the table in the database....

Building a .NET Console Application for Scheduled Tasks       
Total Hits: 388  |  Today: 0 Author: John Peterson       Rating:  
Read Reviews | Write Review |              Your Rating: 

As is usually the case for me, the idea for this article came from a project on which I was recently working. Without going into all the gory the details, the basic requirement was that something needed to happen on a daily basis. This obviously wasn't the first time I'd run into this type of requirement, but as I started digging up my normal solution, I realized that while it was tried and true, it was also horribly outdated. It was written as a .vbs file designed to run via WSH. This meant tha...

Implementing the .netTiers Template Library as a .NET Website's Data Layer - Part I       
Total Hits: 383  |  Today: 0 Author: Dina Fleet Berry       Rating:  
Read Reviews | Write Review |              Your Rating: 

Data layers allow the abstraction of the SQL calls to a separate set of objects. The .netTiers template library (using CodeSmith) will build a data layer for your .NET web application, including the data administration website, the web service, base objects, etc. This article will start with a database with primary key and foreign key relations and use .netTiers to create all the Create Read Update Delete (CRUD) stored procedures and implement .netTiers as a data layer for a web site....

Implementing the .netTiers Template Library as a .NET Website's Data Layer - Part II       
Total Hits: 681  |  Today: 0 Author: Dina Fleet Berry       Rating:  
Read Reviews | Write Review |              Your Rating: 

This is the second article in the .netTiers series. The first article included getting started with the template settings, generating the libraries, a first look at the admin site, a page selecting data out of the database and a page inserting data into the database. This article will include .netTiers discovery of custom stored procedures, SourceTable configuration, and adding custom code to the .netTiers library....

Getting Started with the ASP.NET AJAX Control Toolkit       
Total Hits: 632  |  Today: 0 Author: John Peterson       Rating:  
Read Reviews | Write Review |              Your Rating: 

If you've been wanting to get started with AJAX, but haven't known where to start, this is your lucky day. The ASP.NET AJAX Control Toolkit is designed to provide a rich infrastructure for you to write your own ASP.NET AJAX extenders and controls, but it also provides a number of exceptional controls that can be used right out of the box by developers without any previous AJAX experience....

An Introduction to Code Snippets in Visual Studio       
Total Hits: 666  |  Today: 0 Author: John Peterson       Rating:  
Read Reviews | Write Review |              Your Rating: 

Sometimes it's the little things that can really make your day. That's the way I feel about Visual Studio's Code Snippets. Ever since they were introduced in Visual Studio 2005, I've wondered how I ever wrote code without them....

An Introduction to Code Snippets in Visual Studio - Part II       
Total Hits: 642  |  Today: 0 Author: John Peterson       Rating:  
Read Reviews | Write Review |              Your Rating: 

The first part of this article introduced Visual Studio code snippets and showed how they can save you lots of time and typing by reducing the need for you to manually type repetitive code. It also showed you how to use shortcuts to make using snippets even faster. This installment will examine the .snippet file format and show you how to expand your snippet library by both downloading packaged snippets from the Web and creating your own snippets from scratch....

Sharing Controls Across Different Web Sites Without Using DLLs       
Total Hits: 726  |  Today: 0 Author: Scott D. Smith       Rating:  
Read Reviews | Write Review |              Your Rating: 

One of the most frequent gripes most programmers have about ASP.NET 2.x and 3.x is that you can't implement include files across several web sites. Remember the good old days in Classic ASP when you could just put a reference to a virtual file in the code and it would automagically work? In ASP.NET, Microsoft recommends that you use DLLs to share code, but this can be hazardous and complex, especially when updating DLLs in a production environment. It would be much easier and intuitive if you co...

Building an Enhanced ASP.NET GridView Control       
Total Hits: 711  |  Today: 0 Author: Rachael Schoenbaum       Rating:  
Read Reviews | Write Review |              Your Rating: 

The GridView is a great control that allows you to display paginated results. But what happens if you want to change the underlying display for all of your projects? This article shows you how to extend the GridView so that it displays a summary row and allows pagination and sorting in that summary row....

Editing .NET Configuration Files Programatically       
Total Hits: 289  |  Today: 0 Author: John Peterson       Rating:  
Read Reviews | Write Review |              Your Rating: 

These days, many .NET developers are taking advantage of the fact that you can quite easily store many of an application's settings in .NET configuration files instead of hard coding them into the application's code. What surprises me is that most of these developers don't even realize that in addition to making it easy to access the values stored in these files, the .NET Framework also makes it quite easy to manipulate these values programatically....

Using SyncToy v2.0 for Web Site Deployment       
Total Hits: 229  |  Today: 0 Author: John Peterson       Rating:  
Read Reviews | Write Review |              Your Rating: 

If you're like me, you probably do your best to ensure that the .NET applications you build contain as few external dependencies as possible. Doing so makes them easier to deploy and maintain, since all you need to do is copy the application's files to a new server and you should be good to go. This has come to be know as XCOPY deployment, after the venerable XCOPY command that has been around since the days of DOS....

An Introduction to the Microsoft Web Platform Installer       
Total Hits: 239  |  Today: 0 Author: John Peterson       Rating:  
Read Reviews | Write Review |              Your Rating: 

Getting a new ASP.NET Web development machine up and running isn't hard, but there are a lot of steps involved and it takes a fair amount of time. That's why Microsoft is working on a new tool called the Microsoft Web Platform Installer. It provides a single interface for installation of the tools needed to start developing Web applications
on the Microsoft platform....


1   2    Next >> 

Search Result: Found 30 sites
DevASP - Privacy - Disclaimer
Copyright © 2008 DevASP.com