Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )

This is a link to a different site How Do I...Make a ResourceReader?
Total Hit (670) 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
This is a link to a different site How Do I...Use Regular Expressions to match a pattern?
Total Hit (762) 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
This is a link to a different site How Do I...Get all matches for a pattern
Total Hit (834) 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
This is a link to a different site How Do I...Use Regular Expressions to make replacements?
Total Hit (737) 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
This is a link to a different site How Do I...Use common Regular Expressions?
Total Hit (741) «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
This is a link to a different site Regular expressions to validate email address
Total Hit (800) This all are the common regular expressions to validate email address
Rating
This is a link to a different site Regular expressions to validate URL,URI,URN
Total Hit (795) This all are the common regular expressions to validate different URL, URI or URN
Rating
This is a link to a different site Regular expressions to validate Numbers
Total Hit (852) This all are the common regular expressions to validate Integer Numbers, Decimal Numbers, Money Amount and many more...
Rating
This is a link to a different site Regular expressions to validate different string patterns
Total Hit (1482) This all are the common regular expressions to validate different type of string patterns
Rating
This is a link to a different site Regular expressions to validate different formats of Date / time.
Total Hit (3846) This all are the common regular expressions to validate date/time
Rating
This is a link to a different site Regular expressions to validate IP Address, NUmbers, Strings, Filename, Roman Numbers and many more....
Total Hit (1066) This all are the common regular expressions to validate IP Address, NUmbers, Strings, Filename, Roman Numbers and many more....
Rating
This is a link to a different site Remoting Overview
Total Hit (1226) 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
This is a link to a different site How Remoting Works
Total Hit (1523) 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
This is a link to a different site How Do I...Create a Remote Server?
Total Hit (873) 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
This is a link to a different site How Do I...Create a Client of a Remote Server?
Total Hit (757) 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
This is a link to a different site How Do I...Create a Remote Object as a Singleton?
Total Hit (819) 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
This is a link to a different site How Do I...Pass An Object to a Server By Reference?
Total Hit (731) 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
This is a link to a different site How Do I...Pass An Object to a Server By Value?
Total Hit (735) 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
This is a link to a different site How Do I...Compile a Client Against an Interface?
Total Hit (655) This example illustrates how to build a client that does not reference a server object at compile time. The following code example demonstrates the client code.
Rating
This is a link to a different site How Do I...Make an Asynchronous Call to a Remote Object?
Total Hit (740) 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
This is a link to a different site How Do I...Create Resources?
Total Hit (659) 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
This is a link to a different site How Do I...Use resources?
Total Hit (692) 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
This is a link to a different site How Do I...Read and Write Resources?
Total Hit (747) 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
This is a link to a different site Localize an ASP.NET application?
Total Hit (1018) «LI» Copy and Translate «LI» Localization and Controls «LI» Section Summary
Rating
This is a link to a different site Debug an ASP.NET application?
Total Hit (923) 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
This is a link to a different site Use MTS Transactions?
Total Hit (832) 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
This is a link to a different site Working with AdRotator
Total Hit (1010) 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
This is a link to a different site Include a calendar on a page?
Total Hit (944) «LI» Working With Calendar «LI» Date Selection Modes «LI» Selection Link Graphics «LI» Selection Link Text «LI» Adding Custom Content to Calendar
Rating
This is a link to a different site HtmlInputFile
Total Hit (908) 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
This is a link to a different site Handling Errors
Total Hit (862) «LI» Customizing Error Pages «LI» Handling Errors Programmatically «LI» Writing to the Event Log «LI» Section Summary
Rating


(Page 46 of 133) 3968 Result(s) found  ... 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 ...

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.