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

 

How to change ASP.net Page title Dynamically ?
Total Hit (6152) 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
Use custom error pages in ASP.NET
Total Hit (1902) 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
Update the ACL of a file from an ASP.NET application
Total Hit (2619) It's not uncommon that ASP.NET applications have the need to use a personal .config file to write some runtime information. Since ASP.NET applications are not granted the permission to create or edit files on the server, the best place to store persistent data is a table in a database server (not an ....Read More
Rating
This is a link to a different site Using the ASP.NET Panel Control
Total Hit (971) The Panel Control is so easy to use that I hesitated to even write an article about it. But I have received several questions about it so decided to write the article anyway. The Panel Control is a container that allows you to include other server controls on it. It is primarily used for containing ....Read More
Rating
This is a link to a different site Amazon Explorer - An adventure with ASP.NET & the Amazon Web Service
Total Hit (928) Since the advent of the .NET framework and Web Services I've heard of many interesting and wonderful applications of the two technologies. However, you never really get an appreciation for something until you actually try it yourself. Well, I tried out these technologies with an idea of mine and I m ....Read More
Rating
This is a link to a different site Saving a DataSet as an XML File
Total Hit (702) XML is very well integrated with .NET. Many server controls have XML methods built in making XML capabilities only a method or two away. The DataSet class contains several of these XML methods and we will examine a couple of them in this article. The task in this example is to read a database table ....Read More
Rating
This is a link to a different site ListControl SelectedItem Validator
Total Hit (716) RequiredField Validator for ASP.NET ListControl derived webserver controls
Rating
This is a link to a different site Why do I get an error message, "Access to the path is denied?"
Total Hit (886)
Rating
This is a link to a different site Popup - The .NET Way
Total Hit (532) In this article we are going to build a method and an overload of the same which will open a popup window without using javascript or VB code in the .aspx page.
Rating
This is a link to a different site ASP.NET State Management using C#
Total Hit (592) ASP.NET State Management using C#
Rating
This is a link to a different site Choosing Resource Access Identities -IDENTITY IMPERSONATION
Total Hit (588) Choosing Resource Access Identities -IDENTITY IMPERSONATION
Rating
This is a link to a different site How To: Use Forms Authentication with Active Directory
Total Hit (1032) This How To article shows you how to implement Forms authentication against an Active Directory credential store.
Rating
This is a link to a different site Caching Techniques In ASP.NET - Part II
Total Hit (814) Just like we can cached the output of web forms and user controls we can also cache data i.e. variables, objects of our application. This is possible via a special object called Cache. Cache object is similar to application object in that it exists for the entire application. It differs from applica ....Read More
Rating
This is a link to a different site Writing Object-Oriented JavaScript Part 3
Total Hit (803) Using Cfx to develop a JavaScript control class library.
Rating
This is a link to a different site Web Service Authentication Via SOAP Headers
Total Hit (722) While working with web services one of the commonly faced question is - How do I secure my web service? One aspect of security is preventing anonymous access to the web service. This can be done in various ways such as passing user id and password with each web method call. One elegant alternative i ....Read More
Rating
This is a link to a different site Optimized Master/Detail DropDownList
Total Hit (601) Creating a Master/Detail DropDownList that doesn't require a trip to server
Rating
This is a link to a different site Multiline Textbox Length Validator Control
Total Hit (752) A validator control that limits the number of characters allowed in a textbox when the mode is set to multiline.
Rating
This is a link to a different site Retrieving Configuration
Total Hit (756) ASP.NET allows developers to access configuration settings from within an application either by exposing configuration settings directly (as strongly typed properties) or by using general configuration APIs. The following sample shows a page that accesses the <browserCaps> configuration section usin ....Read More
Rating
This is a link to a different site Building Secure ASP.NET Applications: Authentication, Authorization, and Secure Communication
Total Hit (1035) Applications may choose to store encrypted data such as connection strings and account credentials in the Windows registry. This How To shows you how to store and retrieve encrypted strings in the registry.
Rating
This is a link to a different site Debugging an ASP.NET Web Application, Part II - Debugging
Total Hit (880) Bugs are a fact of the programmer's life. How can we deal with them efficiently? In this series of two articles I'm going to look at two main areas of finding and fixing errors in your program - Tracing and Debugging.
Rating
This is a link to a different site DateTimePicker Web Control
Total Hit (673) DateTimePicker control making use of the ASP.NET Calendar control
Rating
This is a link to a different site An Extensive Examination of Web Services Index : Part-1
Total Hit (1756) Examines the basics of Web services, what Web services are, and the technologies and standards that serve as the underpinnings of Web services.
Rating
This is a link to a different site Using Resource Files In ASP.NET
Total Hit (681) Using resource files in ASP.NET.
Rating
This is a link to a different site .NET Web Services II
Total Hit (785) Part II: Customising attributes; Disco and UDDI practicalities and beginning asynchronous Web Services. Knowledge assumed: VB.NET, VS.NET; .NET Web Service I
Rating
This is a link to a different site Understanding the Differences Among the DataGrid, DataList, and Repeater
Total Hit (608) 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 Cassini and Apache 101
Total Hit (1917) This article describes how to get ASP.NET up and running on Apache 2.x for Windows
Rating
This is a link to a different site Another Way to Register and Render ClientScripts in ASP.NET
Total Hit (639) ASP.NET provides an easy way to register and render clientside JavaScript code to the web browser. This is typically useful when we have embedded JavaScript in a user control and the script should not be duplicated along with the number of instances of the control. ....Read More
Rating
This is a link to a different site Hierarchical Data Binding in ASP.NET
Total Hit (577) «LI»Introduction «LI»Data Binding «LI»Hierarchical Data «LI»Binding to Hierarchical Database data «LI»Binding to XML Data «LI»Accessing Nested Controls «LI»DataGrid and DataList Hierarchical Binding «LI»Limitations and Efficiency «LI»Conclusion ....Read More
Rating
This is a link to a different site How to bind multiple resultsets into a DataGrid control
Total Hit (701) This article describes how to bind multiple resultsets into a DataGrid control.
Rating
This is a link to a different site Data paging in the database (an ASP.NET approach)
Total Hit (835) This article presents a data paging solution in the database. The paging operation was moved on the data layer.
Rating


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