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 (1647)
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 (702)
» 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

(Page 1 of 26) 779 Result(s) found 

How to perform UPDATE operation with datagrid.
Total Hit (461)
Rating
Use custom error pages in ASP.NET
Total Hit (480) The tag in ASP.NET configuration files affects how error pages are managed in an ASP.NET application and whether developers can redirect users to their custom error pages when an exception is thrown. The syntax for this tag is: <customErrors mode="On|Off|RemoteOnly" defaultRedirect="url"> <e ....Read More
Rating
IsLanguageSupported - Detecting whether a language is supported by the browser
Total Hit (360)
Rating
How to change ASP.net Page title Dynamically ?
Total Hit (1337) You can use HtmlGenericControl() in ASP.Net pages to change the page title dynamically. All you have to do is, set an ID for the Html TITLE tag and make it "runat=server". Once you make it runat=server, you can access the control from the server side code and set any value for it. First lest create ....Read More
Rating
This is a link to a different site URL Rewriting in ASP.NET
Total Hit (335) Examines how to perform dynamic URL rewriting with Microsoft ASP.NET. URL rewriting is the process of intercepting an incoming Web request and automatically redirecting it to a different URL. Discusses the various techniques for implementing URL rewriting, and examines real-world scenarios of URL re ....Read More
Rating
This is a link to a different site Reading and Writing Text Files with the .NET Framework
Total Hit (196) Ideally, all persistent data should be stored in a database, but oftentimes Web developers find themselves using plain old text files for some kind of persistent storage. There are usually better alternatives, but since this technique is still used quite a bit, it is worthwhile to discuss how to rea ....Read More
Rating
This is a link to a different site Data Sanitization - Reducing Security Holes in an ASP Web Site
Total Hit (1578) ASP is a great Web development technology that allows for rapid development of data-driven Web sites. However, problems can arise, however, when developers "go live" with code that contains potential security holes due to rushing out poor code, or not knowing the exploits that exist. In this article ....Read More
Rating
This is a link to a different site compile components without having to use a compiler
Total Hit (187) 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 .NET and GDI+: Transforming Images on the Server - Introduction and Examples, Part II
Total Hit (274) New to developers in the .NET Framework, and hence ASP.NET, is the ability to manipulate images through the GDI+ managed class interface (a set of wrappers) which is distributed as part of the Microsoft .NET Framework, allowing access to underlying operating system functionality that provides two-di ....Read More
Rating
This is a link to a different site Discover Directoy and File Data
Total Hit (271) This is a short article, and a small amount of code, to get you started in discovering data about the files contained in a specified directory. In the article you will be exposed to the DirectoryInfo and FileInfo members of System.IO. Actually, you have a couple of choices when discovering directory ....Read More
Rating
This is a link to a different site Paging and Sorting in an ASP.NET DataGrid
Total Hit (156) Allowing paging or sorting in a DataGrid is a very simple process. Allowing for both is only slightly more complicated. This article shows you how to do it.
Rating
This is a link to a different site Build a Web Service and Create a Consumer
Total Hit (272) In this article we will create a guest book web service that will control additions to, and displays from a database table. We will also create a consumer (a regular Web Form) of the web service. The consumer is discussed at the end of the article. Web services look a little strange at first glance ....Read More
Rating
This is a link to a different site How Do I...Receive a message from a message queue?
Total Hit (226) Message queuing makes it easy for application developers to communicate with application programs quickly and reliably by sending and receiving messages. Messaging provides you with guaranteed message delivery and a robust, fail-safe way to carry out many of your business processes. ....Read More
Rating
This is a link to a different site Write my own server control?
Total Hit (221) «LI» Developing a Simple Custom Control «LI» Defining Simple Properties «LI» Defining Class Properties «LI» Retrieving Inner Content «LI» Developing a Composite Control «LI» Handling Events in a Composite Control «LI» Raising Events from a Composite Control «LI» Maintaining State «LI ....Read More
Rating
This is a link to a different site Localize an ASP.NET application?
Total Hit (210) «LI» Copy and Translate «LI» Localization and Controls «LI» Section Summary
Rating
This is a link to a different site Detecting Browser Capabilities
Total Hit (217) Many web applications provide client side functionality based on the capabilities of browser. ASP.NET provides an easy way to get capabilities of browsers. The capabilities of a browser include things such as whether it supports cookies,javascript and ActiveX controls and browser type and version. B ....Read More
Rating
This is a link to a different site Secure Sockets Layer: Protect Your E-Commerce Web Site with SSL and Digital Certificates
Total Hit (214) Security is one of the most important factors in the future growth of e-businesses. Making sure that communications remain secure between customers and the Web server is a critical issue. Secure Sockets Layer (SSL) is the standard that secure Web sites are built upon today. This article presents an ....Read More
Rating
This is a link to a different site Understanding the Differences Among the DataGrid, DataList, and Repeater
Total Hit (182) One of the many benefits of ASP.NET over its predecessor, ASP, is ASP.NET's data Web controls. The data Web controls are designed to easily display data. For example, the DataGrid Web control is ideal for displaying data in an HTML <table>. (For more information on the DataGrid Web control be sure t ....Read More
Rating
This is a link to a different site Building a web based RSS Feed Viewer using System.XML
Total Hit (304) This article illustrates building a class to parse RSS Feeds and return the details in a form that they can be eaisly manipulated and displayed.
Rating
This is a link to a different site Working DataGrid TemplateColumns and Binding these Columns
Total Hit (173) Working DataGrid TemplateColumns and binding these columns with differents objects (TextBox, DropDownList, CheckBox, Image and others).
Rating
This is a link to a different site MP3 Player Server Control
Total Hit (183) Using Flash MX to create a server control for easily playing MP3s.
Rating
This is a link to a different site Data paging in the database (an ASP.NET approach)
Total Hit (247) This article presents a data paging solution in the database. The paging operation was moved on the data layer.
Rating
This is a link to a different site Do more with your ASP.NET Page Template
Total Hit (168) Page templates can provide more than just design consistency
Rating
This is a link to a different site Enhancing ASP.NET Validators
Total Hit (161) An article on extending the ASP.NET validators
Rating
This is a link to a different site Item Template with Data Grid
Total Hit (181) Ever needed to select multiple items from a Data Grid for editing or viewing? Using the Item Template allows this to be accomplished quite easily.
Rating
This is a link to a different site ASP.NET Image Manipulation Examples: Adding, Zooming, Enlarging
Total Hit (240) .NET image manipulation examples, as an ASP.NET Project. Good application-savvy effects.
Rating
This is a link to a different site Role-based Security with Forms Authentication
Total Hit (213) Provides insight and tips on using role-based (groups) Forms Authentication in ASP.NET, which has only partial support for roles.
Rating
This is a link to a different site ASP.NET Session Login Without Cookies
Total Hit (376) Easiest way to authenticate users without cookies.
Rating
This is a link to a different site Generic Graphical Voting Poll Web Application
Total Hit (204) Generic voting poll web application for conducting polls from your website.
Rating
This is a link to a different site ASCX Control Parser
Total Hit (183) A program that allows you to convert .ascx User Controls into redistributable controls
Rating


(Page 1 of 26) 779 Result(s) found  1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

Recommanded Links

 

Home  |  Comment  |  Contact UsPrivacy PolicyTerms & Conditions

© 2008 BinaryWorld LLC. All rights reserved.