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 Caching ASP.NET Pages
Total Hit (865) ASP.NET includes a simple yet powerful way to increase a Web server's throughput by allowing the entire response content from dynamically generated pages to be cached.
Rating
This is a link to a different site ASP.NET Caching Features
Total Hit (899) When clients access an ASP.NET page, there are basically two ways to provide them with the information they need: «li»the ASP.NET page can either obtain information from server resources, such as from data that has been persisted to a database, or the ASP.NET page can obtain information from w ....Read More
Rating
This is a link to a different site A Sliding Window Cache
Total Hit (963) An example of setting the same "Source" object to expire 20 minutes after it is last accessed looks like:
Rating
This is a link to a different site AutoSortArrayList Class
Total Hit (670) It can sort any type of object, so long as that class implements the IComparable interface or you have a Comparer object. AutoSortArrayList has a property to assign your Comparer object. For instance, if you want to use AutoSortArrayList for strings, assign System.Collections.CaseInsensitiveComparer ....Read More
Rating
This is a link to a different site compile components without having to use a compiler
Total Hit (731) ability to compile components without having to use a compiler and or push a compiled component on the server. It completely slipped my mind that we already have support for this built-in to the pre-release.
Rating
This is a link to a different site Adding controls to PlaceHolders dynamically
Total Hit (962) A very powerful and flexible way to program sites in ASP.NET is to one .aspx which contains a PlaceHolder control for each area of your screen. You then dynamically fill these controls during each hit of your page. This code will get you started. Notice the "FindControl" method with which you identi ....Read More
Rating
This is a link to a different site Simple Login Control
Total Hit (1038) This control can be used to validate a user's login. This control is compiled as a library and can be used with any ASP .Net application.
Rating
This is a link to a different site Finding the Control ID
Total Hit (917) How do you find the control ID of the control that made the Postback? Here you go...
Rating
This is a link to a different site Loop through the Cookie Collection
Total Hit (901) A sample from the docs to loop through a cookie collection.
Rating
This is a link to a different site A code snippet I use to loop through the cookie collection
Total Hit (843)
Rating
This is a link to a different site How to Read and Write a Cookie
Total Hit (895)
Rating
This is a link to a different site How to grab information out of an existing cookie
Total Hit (918) A code snippet, posted on aspngbeta on how to read a cookie in C#
Rating
This is a link to a different site Using C# with Cookies
Total Hit (870) A code snippet posted on aspcs about accessing and writing cookies using C#.
Rating
This is a link to a different site Add records to a database, while using a datagrid to display the records.
Total Hit (1017)
Rating
This is a link to a different site Add Nulls to a Database
Total Hit (924)
Rating
This is a link to a different site This example caches a dataset. Updates the database and then invalidates the dataview so a fresh dataset is created.
Total Hit (945)
Rating
This is a link to a different site Implementing Application Roles
Total Hit (1156) SQL Server 7.0, as well as SQL Server 2000, support several technological feature enhancements that allow for a faster time to completion for database and application development. Application roles exist as SQL Server database objects that allow developers and database administrators to assign SQL S ....Read More
Rating
This is a link to a different site DataSets in Microsoft .NET - 2
Total Hit (1305) In the previous part of this article we discussed different features and how to create a dataset in design time lets go further in detail. In this part I will discuss about sort, search and filtering support provided by dataset and data table object.
Rating
This is a link to a different site DataSets in Microsoft .NET - 1
Total Hit (1781) ADO.NET was designed to meet the needs of this new programming model: disconnected data architecture, tight integration with XML, common data representation with the ability to combine data from multiple and varied data sources, and optimized facilities for interacting with a database, all native to ....Read More
Rating
This is a link to a different site Understanding and Working with Oracle Data Provider for .NET
Total Hit (1673) Oracle Data Provider for .NET (ODP.NET) is an implementation of a data provider for the Oracle database. ODP.NET uses Oracle native APIs to offer fast and reliable access to Oracle data and features from any .NET application.
Rating
This is a link to a different site Typed DataSets in .NET by Ramaprasad Upadhyaya.
Total Hit (681) As all of we know, we can specify the data type when we create a DataColumn for a DataTable. This is to enforce the runtime type-safety for the column so that only data of specified data type can be stored in the column.
Rating
This is a link to a different site Basic Database Operations in ADO.NET
Total Hit (4709) This Article will show the basic database transactions select, insert update and delete. I am using MS-Sql database “northwind” for the demonstration. I am not going to use the class SqlCommandBuilder and I will tell you the reason later.
Rating
Creating User Accounts with Directory Services
Total Hit (2605)
Rating
Change a password for an account
Total Hit (2352)
Rating
a code snippet to loop through a user accounts properties.
Total Hit (2469)
Rating
Databinding to multi-dimensional arrays
Total Hit (1590)
Rating
Databinding to multi-dimensional arrays
Total Hit (1749) Someone asked whether it was possible to data bind to a multi-dimensional array, and if so how. Below is a simple example that demonstrates how to do so, it is not a super inspired scenario but you get the idea. Note that in addition to handling arrays, the concept can be applied to any hierarchica ....Read More
Rating
Dynamically Build an Array using ArrayList
Total Hit (1697) «Code LangId=4»Dim Values as New ArrayList() Values.Add("Scott") Values.Add("Fred") Values.Add("Sam") Dim Names as String() Names = Values.ToArray(Type.GetType("System.String"))«/Code» Note that because ArrayList implements ICollection -- you can do standard foreach interation over it. ....Read More
Rating
This is a link to a different site Use ASP.NET caching to optimize your Web applications
Total Hit (979) The ASP programming model includes the Application object, which allows developers to place both simple data types and COM objects in memory on the Web server so they could be accessible on any page, regardless of the current user. While ASP’s Application object retains its original functionality in ....Read More
Rating
This is a link to a different site Caching in .Net - Overview
Total Hit (880) One of the new features in ASP.NET is a system for caching page and application data, so that you don’t have to perform the same expensive process every time someone views a page. Page caching: Caching can be performed on a per-page basis, or on a per-user-control basis, letting you store part o ....Read More
Rating


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