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 4 of 26) 779 Result(s) found 

 

Programically Call a 404 Page Not Found
Total Hit (1861) 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
This is a link to a different site URL Rewriting with ASP.NET
Total Hit (2695) Demonstrates the use of regular expression-based URL Rewriting, similar to mod_rewrite with ASP.NET
Rating
This is a link to a different site ASP.NET Client Side Focus Helper
Total Hit (652) Helper class that generates and registers a client side script which sets focus to a control during the loading of the page.
Rating
This is a link to a different site Login using the Web.config file ASP.NET
Total Hit (1060) The web.config file can be used to restrict access to resources within a directory forcing the user to login for authentication. This is useful in that they can be restricted from access by directory rather than validating the user through a session variable on every page. This FAQ is based on a pr ....Read More
Rating
This is a link to a different site An Extensive Examination of Web Services: Part 6
Total Hit (1803) Looks at sending metadata to a Web method through the use of SOAP headers. Examines defining and accepting a SOAP header on the Web service end, and looks at sending a populated SOAP header from the client.
Rating
This is a link to a different site Using the Microsoft Managed Provider for Oracle...
Total Hit (767) Microsoft has brought the power and speed of the Managed Provider for SQL Server to the Oracle database. In this article we see how to use it directly, and to call a stored procedure with a join.
Rating
This is a link to a different site Regular Expressions in ASP.NET
Total Hit (986) Regular expressions are an extremely useful tool for working with text. Whether you need to validate user input, search for patterns within strings, or reformat text in powerful ways, regular expressions can help.
Rating
This is a link to a different site Dynamic Webcam Image
Total Hit (1042) Streaming Dynamic Images from your webcam into your web pages.
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 Text2Image
Total Hit (940) An ASP.NET example in VB.NET that converts text to an image.
Rating
This is a link to a different site Implementing Role Based Security in ASP.NET
Total Hit (891) In many applications in addition to authenticating users you need to authorize them based on their roles. In this article we will see how to use Windows built in as well as custom roles to authorize users of your application. This article will cover folloing topics «LI»What are Principals, Rol ....Read More
Rating
This is a link to a different site Caching Techniques In ASP.NET - Part I
Total Hit (802) In order to build scalable web sites it is important to optimize the way your web pages are served to the user. Consider a web site that provides a list of certain products to the user. The products are not going to change frequently. In traditional ASP such product catalog page will be processed ea ....Read More
Rating
This is a link to a different site Exposing the Session Object as a User Defined Class
Total Hit (1141) A simple way to encapsulate all Session object variables in a user defined class
Rating
This is a link to a different site Introduction to XML Namespaces & Schema
Total Hit (581) Traditionally XML document structures are defined using DTD - Document Type Definition. However DTDs suffer for many limitations like :
Rating
This is a link to a different site Generate PDF documents from a HTML page using ASP.NET
Total Hit (809) Convert HTML to PDF from an ASPX page.
Rating
This is a link to a different site How to Improve Your Search Engine Ranking on Google
Total Hit (6494) This article the Google search engine promotion tips given in that issue and extends it with new Google search engine positioning tips.
Rating
This is a link to a different site Send Email and Attachments with ASP.Net
Total Hit (752) In this example you will see how to send email and one way of sending attachments from within an .aspx file. The text boxes for the various components of the email are wrapped in a panel control, so if you have not used panels, you can learn a little about that .net control. ....Read More
Rating
This is a link to a different site Simple Paging in Repeater and DataList Controls
Total Hit (1095) Most of the times while creating database driven web pages like product listing, employee directory, etc. we display the data in grid format. ASP.NET has come up with Web Controls like DataGrid, DataList and Repeater that allow you to display your data in tabular format easily ....Read More
Rating
This is a link to a different site Caching with ASP.NET Part-1
Total Hit (989) In classic ASP, one of the techniques developers commonly relied on to speed up processing was the use of caching. One could, fairly easily, build their own caching system using Application variables, as highlighted in the FAQ, How can I use Application-level variables to cache information? There we ....Read More
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 Share your user control across multiple web applications
Total Hit (977) How to share a user control across multiple websites.
Rating
This is a link to a different site Winsock API - Step by step tutorial for the VB developers
Total Hit (4899) We've added three new examples for the tutorial that demonstrate how to call the name resolution Winsock API functions: «li»How to get an IP-address of the remote host «li»How to get name and IP address of the local system «li»How to get host name by IP address ....Read More
Rating
This is a link to a different site Another Dynamic ASP.NET Text Image
Total Hit (639) Another article which shows you how to dynamically create an image from text in ASP.NET.
Rating
This is a link to a different site Separating Datagrid Items
Total Hit (605) How to add a separator row to set off groups of similar data in an ASP.NET Datagrid
Rating
This is a link to a different site .NET Web Services I
Total Hit (949) Microsoft promoted Web Services a great deal with the launch of .NET. This seems to have faded a little with Web Services perhaps not having taken off as much as was thought. The concept of interoperability over the Internet is still a great one however. In this article we'll quickly review the basi ....Read More
Rating
This is a link to a different site Custom Authentication provider by implementing IHttpModule, IPrincipal and IIdentity
Total Hit (654) An article on writing Custom Authentication provider in ASP.NET
Rating
This is a link to a different site Letter/Alphanumeric Based Paging in ASP.NET
Total Hit (687) Explains one approach to adding letter-based paging to an ASP.NET datagrid control.
Rating
This is a link to a different site Single Control Validation Solution
Total Hit (2504) A single control to validate a .NET Web Form.
Rating
This is a link to a different site How Do I...Modify Active Directory?
Total Hit (2190) The Active Directory Service Interface (ADSI) accesses the capabilities of directory services from different network providers in a distributed computing environment to present a single set of directory service interfaces for managing network resources. Administrators and developers can use ADSI ser ....Read More
Rating
This is a link to a different site ASP.NET Guestbook Application
Total Hit (694) This is a 1:1 port (regarding functionality) of my guestbook application written in VBScript for ASP, to a C# application written for ASP.NET.
Rating


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