 |
How Do I...Make a ResourceReader?
|
Total Hit (755) |
There are two steps to creating a custom resource reader. The first step is to create a class that implements IResourceReader, which requires a Close method and an implementation for GetEnumerator. The following code example demonstrates creating a basic class that implements IResourceReader.
....Read More |
Rating
 |
|
 |
How Do I...Use Regular Expressions to match a pattern?
|
Total Hit (872) |
Regular Expressions allow for easy parsing and matching of strings to a specific pattern. Using the objects available in the RegularExpressions namespace, it is possible to compare a string against a given pattern, replace a string pattern with another string, or to retrieve only portions of a forma
....Read More |
Rating
 |
|
 |
How Do I...Get all matches for a pattern
|
Total Hit (947) |
Regular Expressions are often useful when trying to retrieve small portions of text from a large document, result set, or when filtering a stream. The MatchCollection object contains all valid Match objects for a given regular expression after a successful match occurs.
....Read More |
Rating
 |
|
 |
How Do I...Use Regular Expressions to make replacements?
|
Total Hit (832) |
The Regular Expressions library can often ease the time it takes to generate string replacement functions. By specifying a pattern of strings to be replaced, you do not have to search for every possible variation of a string. Once a Regex object that matches every possible string to be replaced is c
....Read More |
Rating
 |
|
 |
How Do I...Use common Regular Expressions?
|
Total Hit (850) |
«b»Social Security Number «/b»
\d{3}-\d{2}-\d{4}
«b»US Phone Number«/b»
((\(\d{3}\) ?)|(\d{3}-))?\d{3}-\d{4}
«b»US Postal Code«/b»
\d{5}(-\d{4})?
«b»Internet EMail Address«/b»
[\w-]+@([\w-]+\.)+[\w-]+
«b»Internet URL «/b»
http://([\w-]\.)+[\w-](/[\w- ./?%=]*)?
«b
....Read More |
Rating
 |
|
|
|
|
|
|
|
 |
Remoting Overview
|
Total Hit (1371) |
The common language runtime Remoting infrastructure provides a rich set of classes that allow developers to ignore most of the complexities of deploying and managing remote objects. Even though you are dealing with applications running against different run-time environments, calling methods on remo
....Read More |
Rating
 |
|
 |
How Remoting Works
|
Total Hit (1673) |
The .NET Remoting framework provides developers with a modern distributed object model that allows remote method invocation between different common language runtimes across the network or between different AppDomains in the same common language runtime. Any interaction with a remote object occurs t
....Read More |
Rating
 |
|
 |
How Do I...Create a Remote Server?
|
Total Hit (982) |
This sample demonstrates how to create the remoting version of a Hello World server. When a client calls the HelloMethod on the HelloServer class, the server object appends the string passed from the client to "Hi There" and returns the resulting string back to the client. The following code example
....Read More |
Rating
 |
|
 |
How Do I...Create a Client of a Remote Server?
|
Total Hit (857) |
If you haven't already read the section How Do I Create a Remote Server?, please read this first. The client references the server assembly for metadata, so you have to compile the server before the client. The code for the client is listed below.
....Read More |
Rating
 |
|
 |
How Do I...Create a Remote Object as a Singleton?
|
Total Hit (934) |
This example demonstrates how to modify the Client/Server example by deploying the remote object as a singleton. The client starts two threads and calls the CountMe method on the server on two different channels: TCP and HTTP. Although this example is very simple, it does illustrate a few important
....Read More |
Rating
 |
|
 |
How Do I...Pass An Object to a Server By Reference?
|
Total Hit (839) |
This example demonstrates how to create an object that derives from MarshalByRefObject on the client that is then passed as a parameter to the server. The server calls a method on the remote object it receives. The first step is to create the object you need to pass.
....Read More |
Rating
 |
|
 |
How Do I...Pass An Object to a Server By Value?
|
Total Hit (835) |
The Pass an Object to a Server by Reference section illustrated that local objects are always passed by value when you call a remote function. To demonstrate this concept, you need change the previous example.
|
Rating
 |
|
|
 |
How Do I...Make an Asynchronous Call to a Remote Object?
|
Total Hit (829) |
All the examples up to this point made synchronous calls to the remote object. This strategy might not always be desirable since the remote object might have to perform a number of time-consuming tasks and it is not advisable to block the client while a call is in progress. This example demonstrates
....Read More |
Rating
 |
|
 |
How Do I...Create Resources?
|
Total Hit (752) |
Creating resources can help you develop robust, culture-aware programs without having to recompile your application because the resources have changed. The steps for creating and subsequently using resources are covered in this topic.
|
Rating
 |
|
 |
How Do I...Use resources?
|
Total Hit (778) |
This example demonstrates how to use resource files, dynamically loading a particular resource based on a selected culture. Resources allow you to develop robust, culture-aware programs without having to recompile your application because the resources have changed. The code required to access eleme
....Read More |
Rating
 |
|
 |
How Do I...Read and Write Resources?
|
Total Hit (859) |
This example illustrates how to read and write resource files through code. You can use other tools (such as Resgen) to write resource files; however, you can also use the ResourceWriter object to create new resource files from scratch, providing the potential to create your own environment for maki
....Read More |
Rating
 |
|
|
 |
Debug an ASP.NET application?
|
Total Hit (1074) |
No matter how skilled a programmer you are, you are bound to make mistakes once in a while. Tracking down problems in your code can be baffling without the appropriate tool. Fortunately, the compiled nature of ASP.NET means that debugging Web applications is no different than debugging any other man
....Read More |
Rating
 |
|
 |
Use MTS Transactions?
|
Total Hit (952) |
A transaction is an operation or set of operations that succeeds or fails as a logical unit. A good example of a transaction is the transfer of funds from one bank account to another. In this case, the funds must be debited from the first account and credited to the second account before the operati
....Read More |
Rating
 |
|
 |
Working with AdRotator
|
Total Hit (1169) |
The AdRotator control presents ad images that, when clicked, navigate to a new Web location. Each time the page is loaded into the browser, an ad is randomly selected from a predefined list. The following sample illustrates using the AdRotator control.
....Read More |
Rating
 |
|
 |
Include a calendar on a page?
|
Total Hit (1090) |
«LI» Working With Calendar
«LI» Date Selection Modes
«LI» Selection Link Graphics
«LI» Selection Link Text
«LI» Adding Custom Content to Calendar
|
Rating
 |
|
 |
HtmlInputFile
|
Total Hit (1051) |
An HtmlInputFile control handles uploading of binary or text files from a client browser to the server. File-upload works with all HTML 3.2 and later Web clients. Note that the Enctype attribute on the <form> tag must be set to "multipart/form-data".
|
Rating
 |
|
 |
Handling Errors
|
Total Hit (1028) |
«LI» Customizing Error Pages
«LI» Handling Errors Programmatically
«LI» Writing to the Event Log
«LI» Section Summary
|
Rating
 |
|