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...Use Assembly Version Policy?
Total Hit (990) A primary goal of the deployment system in the .NET Framework is to eliminate conflicts between applications caused by shared components and shared states (or DLL conflicts). A key solution to this problem is a robust versioning system. The .NET Framework records information about an application's d ....Read More
Rating
This is a link to a different site How Do I...Create a Publisher Policy Assembly?
Total Hit (969) A Publisher policy statement describes the compatibility of an assembly issued by the publisher of that shared assembly. See How Do I...Use Version Policy" to see how a publisher's policy statement fits into the overall .NET Framework version policy scheme. Publisher policy is commonly used in servi ....Read More
Rating
This is a link to a different site How Do I...Get the types in an assembly?
Total Hit (1001) This sample illustrates how to retrieve all the types for a given assembly. To look through the types of an assembly, you first need to identify the assembly you want to manipulate. Once you have an object reference to the assembly of interest, you can call the GetTypes method on that assembly, whic ....Read More
Rating
This is a link to a different site How Do I...List all the members of a type?
Total Hit (1077) This example lets you list the members for a given data type. The ability to list a type's members is a great way to quickly discover which elements are available. It is an important tool for reporting on your system as well as assisting in the development of user documentation. Using the Reflection ....Read More
Rating
This is a link to a different site How Do I...Invoke methods using reflection ?
Total Hit (1672) This sample illustrates how to invoke different kinds of methods through reflection. Because the names of the methods being invoked are stored in strings, this mechanism provides the capability to specify methods to be invoked at runtime, rather than at design-time, providing the scope to give your ....Read More
Rating
This is a link to a different site How Do I...Encrypt and Decrypt a file?
Total Hit (2722) The CryptoStream class in the System.Security.Cryptography namespace is used to easily define cryptographic transforms on any data stream. The constructor is defined as the following: CryptoStream (Stream argument, ICryptoTransform transform, CryptoStreamMode mode). ....Read More
Rating
This is a link to a different site How Do I...Generate and compare a hash value?
Total Hit (2305) It is easy to generate and compare hash values using the cryptographic resources contained in the System.Security.Cryptography namespace. Because all hash functions take input of type Byte[], it might be necessary to convert the source into a byte array before it is hashed. To generate a hash val ....Read More
Rating
This is a link to a different site ADO.NET: Get Out Parameters from a Stored Procedure
Total Hit (550) Some stored procedures return values through parameters. When a parameter in a SQL statement or stored procedure is declared as "out", the value of the parameter is returned back to the caller; the value is stored in a parameter in the Parameters collection on the OleDbCommand or SqlCommand objects. ....Read More
Rating
This is a link to a different site ADO.NET: Populate a DataSet from a Database
Total Hit (588) Getting data from a database is easy, and working with data is easier than before. If you want the results from a database as a forward only, read-only stream of data, you can execute a command and retrieve the results using the DataReader. For examples on how to use a DataReader, see Retrieve Data ....Read More
Rating
This is a link to a different site ADO.NET: Update a Database from a DataSet
Total Hit (587) This topic illustrates how to update data in a database using a DataSet. It is important to remember that you can also insert, update, and delete data in a database directly using a SqlCommand. Understanding the concepts covered in Populate a DataSet from a Database will help you understand the curr ....Read More
Rating
This is a link to a different site ADO.NET: Handle Errors
Total Hit (1099) In addition to Try/Catch and exceptions, the new ADO.NET data architecture allows you to add error messages to each row of Data in a DataSet. SqlDataAdapters attach error messages to Rows if updates or other actions fail. Furthermore, you can filter for rows in error to present them to the user, or ....Read More
Rating
This is a link to a different site ADO.NET: Work with Relational Data
Total Hit (579) A DataSet can contain either unrelated tables or related tables. You can think of a DataSet as a document of data. In fact, an XML data document is like this, except it is based on a hierarchical paradigm. Because data is often stored in relational databases, the DataSet can handle both hierarchical ....Read More
Rating
This is a link to a different site ADO.NET: Work with Typed Data
Total Hit (640) ADO classic code provides late-bound access to values within its recordset through weakly typed variables. ADO.NET code enables you to access the data held in the DataSet through a "strongly typed" metaphor. This means you can access tables and columns that are part of the DataSet with user-friendly ....Read More
Rating
This is a link to a different site ADO.NET: Filter Data
Total Hit (548) There are many ways to filter data. One way is to filter data at the database command level, using a where clause on your query. A second way is to filter the data after it is in the DataSet. This topic covers filtering in the DataSet. Once data is in a DataSet you can use methods on the DataSet t ....Read More
Rating
This is a link to a different site ADO.NET: Connection Pooling
Total Hit (570) This sample illustrates how to construct a pool of connections to a datasource. You will want to do this to deploy high-performance applications. In this example the pool is established in the connection string and managed automatically by the SqlConnection. ....Read More
Rating
This is a link to a different site ADO.NET: Generate XML with data from SQL Server
Total Hit (588) This sample illustrates how to produce XML from SQL Server using two different techniques. The first uses the ExecuteXmlReader method of SqlCommand to get an XmlTextReader, which is then populated into a DataSet using the ReadXml method of the DataSet class. The second uses the SqlDataAdapter to ext ....Read More
Rating
This is a link to a different site ADO.NET: Loading a native ADO recordset into a DataSet
Total Hit (1345) This sample illustrates using ADO recordsets with managed Datasets. To provide access to ADO Recordset and Record objects from ADO.NET, the OLE DB .NET Data Provider overloads the Fill method of the OleDbDataAdapter to accept an ADO Recordset object or an ADO Record object. Filling a DataSet with th ....Read More
Rating
This is a link to a different site ADO.NET: Retrieve Data using OLE DB
Total Hit (551) This sample illustrates how to read data from an OLE DB provider using the OleDbDataReader class. This class provides a way of reading a forward-only stream of data records from a data source. If you want to work with SQLServer 7.0 or higher, you should refer to the topic Retrieve Data from SQLServe ....Read More
Rating
This is a link to a different site ADO.NET: Retrieve Data from SQL Server
Total Hit (580) This sample illustrates how to read data from SQL Server using the SqlDataReader class. This class provides a way of reading a forward-only stream of data records from a data source. If you want to work with databases that have OLE DB interfaces or versions of SQL Server prior to SQL Server 7.0, see ....Read More
Rating
This is a link to a different site ADO.NET: Convert an ADO Application to ADO.NET
Total Hit (590) This is an example of an ADO application that has been ported to .NET without the original graphical interface. It also shows the usage of a forward-only read-only fast DataReader. It shows how to use a DataView class to take a table from a DataSet and operate on it in a fashion similar to the old A ....Read More
Rating
This is a link to a different site How Do I...Catch an Exception?
Total Hit (2044) This sample illustrates how to catch an exception. A try...catch...finally block is used in this sample. Any code that might throw an exception is placed inside of the try block. If an exception is thrown, the catch block is entered and the program can perform the appropriate operation to recover or ....Read More
Rating
This is a link to a different site How Do I...Throw an Exception?
Total Hit (1371) This sample illustrates how to throw an exception. A try..catch..finally block is used in to illustrate to use and catch the exception you threw. It is important to remember that when you throw an exception, you need to document the exception you throw, so that users are aware they need to include a ....Read More
Rating
This is a link to a different site How Do I...Format basic types?
Total Hit (2464) This sample illustrates how to format base data types for display. Traditionally, formatting the user can see, such as brackets and the dash in a phone number, has not been viewed as the kind of information you want to store in a permanent datastore. The formatting provided in these demonstrations e ....Read More
Rating
Programically Call a 404 Page Not Found
Total Hit (1857) You can set the access to the config.web file in the file itself. The <httphandlers> section allows you to specify that access to all .web files will give a 404 error:
Rating
How to Tear a webpage from another server
Total Hit (1882) code snippet from aspngbeta list on how to read another webpage on another server.
Rating
Delete a Directory
Total Hit (1623) A code snippet used to delete a directory and all of its contents
Rating
This is a link to a different site How Do I...Watch file system changes?
Total Hit (714) Use the FileSystemWatcher component to monitor a file system and react when changes to it occur. This makes it possible for you to quickly and easily launch business processes when certain files or directories are created, modified, or deleted. For example, suppose you and a group of coworkers are c ....Read More
Rating
This is a link to a different site How Do I...Create an assembly with a strong name?
Total Hit (971) Assemblies can be assigned a cryptographic signature, called a strong name, which provides name uniqueness for the assembly and prevents someone from taking over the name of your assembly (name spoofing). If you are deploying an assembly that will be shared among many applications on the same machin ....Read More
Rating
This is a link to a different site How Do I...Work with the global assembly cache?
Total Hit (1027) The global assembly cache is a machine-wide store used to hold assemblies that are intended to be shared by several applications on the machine. The .NET Framework provides two tools for working with the cache. One is a Windows shell extension that allows you to work with the cache using a Graphical ....Read More
Rating
This is a link to a different site How Do I...Change the search path for private assemblies?
Total Hit (1759) Private assemblies are assemblies that are visible to only one application. The .NET Framework enables developers to build applications that are isolated from changes made to the system by other applications. Private assemblies must be deployed in the directory structure of the containing applicatio ....Read More
Rating


(Page 43 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.