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

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

 

Databinding to multi-dimensional arrays
Total Hit (1592)
Rating
Automatically hyperlink URLs in ASP.NET Pages
Total Hit (9775) Suppose that your ASP.NET pages display contents read from database fields. Suppose also that some of those fields may contain URLs or email addresses. A typical example is when you display user information such as the email address or the personal Web site. By using regular expressions, you can aut ....Read More
Rating
Sending files to the browser
Total Hit (2750) The ASP.NET Response object has been greatly expanded in its capability to send output to the client browser. For example, the WriteFile method can send the contents of any text, HTML, or XML file to the browser; in classic ASP you have to load the file in memory and then pass its contents to a Writ ....Read More
Rating
Accessing user controls from the code-behind
Total Hit (2756) When you add a user control to an ASP.NET page, Visual Studio .NET does not add a control declaration as it does when you add standard ASP.NET web controls. The result is that you can't directly access the user control from the code-behind and programmatically change its properties and call its meth ....Read More
Rating
Relative Urls in user controls
Total Hit (2638) Urls that you set in user-control's child controls are relative to the user control's directory, not to the host page's directory. Say for example that you have an user-control located under the /UserControls directory, and the host page under the / root directory. The user-control exposes a custom ....Read More
Rating
This is a link to a different site Write an ASP.NET page?
Total Hit (495) «big»Web Forms Syntax Reference«/big» «LI» ASP.NET Web Forms Syntax Elements «LI» Rendering Code Syntax «LI» Declaration Code Syntax «LI» ASP.NET Server Control Syntax «LI» ASP.NET Html Server Control Syntax «LI» Databinding Syntax «LI» Object Tag Syntax «LI» Server Side Comment S ....Read More
Rating
This is a link to a different site Work with the DataList control?
Total Hit (927) «LI» Introduction to Templated Controls «LI» Handling Postbacks from a Template «LI» Using Select and Edit Templates «LI» Finding a Control Inside a Template «LI» Section Summary
Rating
This is a link to a different site HTML Cute Submit Button (Server Control )
Total Hit (599) Creating a custom good looking Submit button.
Rating
This is a link to a different site Using a ButtonColumn Control in a DataGrid
Total Hit (556) The ButtonColumn Control is one of several controls that can be used within a DataGrid control in ASP.Net. This article demonstates one way to use this control.
Rating
This is a link to a different site SWAT - A simple Web-based Anomalies Tracker - Part 9
Total Hit (931) This is the last SWAT article. This article implements the reporting feature and completes all the requirements described in the first article. For those readers new to SWAT, this series of articles described the development of an application I devised as a learning project. The purpose of the proje ....Read More
Rating
This is a link to a different site Easy to use Hit Counter
Total Hit (783) An ASP.NET Hit Counter control that's *very easy* to use
Rating
This is a link to a different site Simple User Account Login
Total Hit (683) Demonstrates maintaining user account information, managing session state, Access database I/O, cookies, and some other basic features.
Rating
This is a link to a different site A completely customizable Google API Web Client
Total Hit (558) A completely customizable Google API Web Client
Rating
This is a link to a different site CJA Cascade JIT Activation
Total Hit (622) Simple example of multi JIT activation
Rating
This is a link to a different site Forms Authentication Against SQLServer
Total Hit (522) In this article I'll cover how we can extend the inbuilt facilites of ASP.NET a little to provide authentication against a SQLServer database. Forms authentication is the method we shall focus on, in particular integrating a SQLServer authority.
Rating
This is a link to a different site How to upload your files in ASP.Net
Total Hit (842) This article explains how to upload files using ASP.Net with example
Rating
This is a link to a different site I have installed the .NET Framework, but my Web server won't serve ASP.NET Web pages. Help!
Total Hit (854)
Rating
This is a link to a different site Dropdown list for the foreign key of a table in a datagrid
Total Hit (931) The script populates an ArrayList with values from the database and then binds the list to the dropdown inside the datagrid. You would want to do something similar, but you'll need to store the foreign key as well as the text.
Rating
This is a link to a different site ASP Configuration Files
Total Hit (795) ASP.NET/ IIS applications use an optional XML-based configuration file named web.config, to maintain application configuration settings. This extends and/ or changes any settings in the system wide configuration file, machine.config.
Rating
This is a link to a different site Configuring Exceptions Using Web.config
Total Hit (788) An article on handling exceptions using custom handlers, by a custom configuration section, making it independent from the using application.
Rating
This is a link to a different site Encrypt Password Field in SQL Server, Registry Information & Query String
Total Hit (2469) How to encrypt the database password field, registry information and query string.
Rating
This is a link to a different site Retaining State for Dynamically Created Controls in ASP.NET applications
Total Hit (1004) When creating controls on the fly on your ASP.NET pages viewstate is a bit hard to track. Learn how it works and how to help your application remembers where to put what.
Rating
This is a link to a different site Building International Applications with .NET – Part 1
Total Hit (661) This article is the first of the multi-part series which talks about how world-ready applications can be written with .NET.
Rating
This is a link to a different site Stop Refresh after submitting your request
Total Hit (1006) This article describes a way to implement a control allowing user to stop refesh of a page after submitting the request.
Rating
This is a link to a different site Editable ComboBox control in ASP.net
Total Hit (987) I've always wondered why Microsoft, or any else for that matter, has never provided a native HTML ComboBox element. After some poking around on the web, I decided to take matters into my own hands. I wanted a control that would be visually distinctive from the default HTML Select element and provide ....Read More
Rating
This is a link to a different site Allow the User to Specify the Number of Rows Displayed in a Paged DataGrid
Total Hit (518) This will be a very short article - more code than anything else. I've been asked several times lately how you can allow a user to specify the number of rows to show in a paged DataGrid. The answer is very simple. It only takes one line of code.
Rating
This is a link to a different site Grant or deny permission to a user or role?
Total Hit (948) ASP.NET is used to control client access to URL resources. It is configurable for the HTTP method used to make the request (GET or POST) and can be configured to allow or deny access to groups of users or roles. The following example shows access being granted to a user named John and a role named A ....Read More
Rating
This is a link to a different site How To: Set Up SSL on a Web Server
Total Hit (1071) A Web server must be configured for SSL in order to support https connections from client applications. This How To shows you how to configure SSL on a Web Server. (
Rating
This is a link to a different site SendMail 101 - How to send e-mails over SMTP (C# and ASP.NET)
Total Hit (695) This sample shows you how to send e-mails over SMTP using the Mail-Class in C# and ASP.NET.
Rating
This is a link to a different site Working with Dynamically Created Controls
Total Hit (961)
Rating


(Page 12 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 Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.