Home > Rss Directory > Technology > WebReference


List:
5 10 15 20 25 30 [35] 40 50
Page:
<< Prev 1 [2] 3 Next >>
Adding Client Capabilities to Server Controls Using the ASP.NET AJAX Control Toolkit   more similar news »
The ASP.NET AJAX Control Toolkit assists in the development of extender controls, the use of attributes to decorate extender control properties that should be included in the $create statement creation, built-in designer support, and much more. By Adam Calderon & Joel Rumerman. 0714
Thu Jan 01, 1970
more from this source»»
How to Create an Ajax Autocomplete Text Field: Part 10   more similar news »
In the last article, we examined two visual features that could be used to enhance the appearance of the Autocomplete control. This week we'll be delving into the last major functional piece of our Autocomplete Control: key event handlers. By Rob Gravelle. 0716
Thu Jan 01, 1970
more from this source»»
Simple Comments Release Notes: v.960   more similar news »
The number one change in this release is support for OpenID. Other enhancements include: HTML Header/Footer Templates, Article Locking, Support for Unique Display Names, Visitor CAPTCHA Bypass, User E-mails in Comments and more. By Dan Ragle. 0723
Thu Jan 01, 1970
more from this source»»
Hello Triangle: An OpenGL ES 2.0 Example   more similar news »
This week you'll learn what's necessary to create an OpenGL ES 2.0 program that draws a single triangle. You'll also learn how to create an on-screen render surface with EGL, load vertex and fragment shaders, create a program object and more. By Aaftab Munshi, Dan Ginsburg, Dave Shreiner. 0728
Thu Jan 01, 1970
more from this source»»
Giving Caches a Chance   more similar news »
Though it tends to get treated poorly, HTTP isn't a dumb file-transfer protocol. It allows you to specify an intention with your requests (GET/POST, with PUT and DELETE available) and offers authentication. The focus of this article, however, is about caching. By Marijn Haverbeke. 0730
Thu Jan 01, 1970
more from this source»»
Primitive Data Types, Arrays, Loops, and Conditions   more similar news »
Before diving into the object-oriented features of JavaScript, one needs to look at some of the basics, including: primitive data types, such as strings and numbers, arrays, common operators, flow control statements, etc. By Stoyan Stefanov. 0804
Thu Jan 01, 1970
more from this source»»
How to Create a Search Feature with PHP and MySQL   more similar news »
This week you'll learn how to create a searchable form feature that will query a database table and display current staff member information. Topics include: creating a database table to hold staff listings, a search form, using PHP and (SQL) to capture information and more. By Ryan Butler. 0807
Thu Jan 01, 1970
more from this source»»
Primitive Data Types, Arrays, Loops, and Conditions: Part 2   more similar news »
Any value that you use is of a certain type. In JavaScript, there are the following primitive data types: Number, String, Boolean, Undefined and Null. Any value that doesn't belong to one of the five primitive types listed above is an object. By Stoyan Stefanov. 0811
Thu Jan 01, 1970
more from this source»»
How to Create an Ajax Autocomplete Text Field: Part 11   more similar news »
Along the way, we learned about the Eclipse IDE, the Eclipse Web Project, JSP pages, how to add a Tomcat server to the IDE, JavaScript, AJAX, JSON and CSS. This week we wrap up the series by adding code to process ENTER and TAB keystrokes, and keeping the list open when returning from another page. By Rob Gravelle. 0814
Thu Jan 01, 1970
more from this source»»
Primitive Data Types, Arrays, Loops, and Conditions: Part 3   more similar news »
This tutorial takes a look at some of the basics of JavaScript, such as primitive data types, arrays, common operators and flow control statements. This final installment looks at arrays, conditions and loops. By Stoyan Stefanov. 0818
Thu Jan 01, 1970
more from this source»»
Simple Comments Meets OpenID   more similar news »
Beginning with version .960, Simple Comments supports visitor logins using OpenID identifiers. In this article, I discuss some of the specific architectural and developmental considerations that went into the process of OpenID-enabling the Simple Comments system. By Dan Ragle. 0820
Thu Jan 01, 1970
more from this source»»
Advanced Web Performance Optimization   more similar news »
On the server side, you can improve performance by: Optimizing parallel downloads, caching frequently used objects, using HTTP compression, deploying delta encoding and rewriting URIs with mod_rewrite. By Andrew B. King. 0825
Thu Jan 01, 1970
more from this source»»
Performance Optimizations for High Speed JavaScript   more similar news »
In this article, we look at how important JavaScript optimizations are analyzed. These general purpose techniques are designed for JavaScript on all browsers. Detailed graphs of all the performance results are given after each optimization. You will be amazed at the incredible speed improvements! By Joseph Myers
Thu Jan 01, 1970
more from this source»»
Creating Dynamic RSS Feeds with Ajax   more similar news »
If you want to place RSS feeds on your Web pages and don't want to learn how to scrape pages, this tutorial will show you how to use the last RSS script to gather them for you. By Lee Underwood. 0902
Thu Jan 01, 1970
more from this source»»
The Partial Function Application in JavaScript   more similar news »
The partial function application is an effective method of applying different inputs to a single object or bind one of the arguments to a function as a constant. This article covers how to use closures to perform two types of partial application: Binding and currying. By Rob Gravelle. 0905
Thu Jan 01, 1970
more from this source»»
Blogging: How to Make Sense Out of WordPress Options   more similar news »
Have you ever wanted to use WordPress? You might be surprised to discover that there are three versions of the program. Read on to find out which one is right for you. By Claude Pelanne. 0909
Thu Jan 01, 1970
more from this source»»
Review: 3ds Max 2009   more similar news »
This new version of 3ds Max offers a wide range of updates to a popular application. This week we look at several of these updates, including: the ViewCube, Steering Wheels, Photometric Lighting, MentalRay ProMaterials and more. By Nathan Segal. 0912
Thu Jan 01, 1970
more from this source»»
WordPress: AJAX/Dynamic Content and Interactive Forms   more similar news »
This week we look at the most popular methods to get you going with AJAX in WordPress and use plug-ins and widgets to create dynamic self-updating content and interactive forms in your WordPress site. By Tessa Blakeley Silver. 0916
Thu Jan 01, 1970
more from this source»»
Do It Yourself SSL Guide   more similar news »
This week you'll learn how to have the connection between the browser and the Web server encrypted. This guide is designed for use with the typical Apache on Linux configuration. By Stephen Philbin. 0919
Thu Jan 01, 1970
more from this source»»
Business Blogging: Content Is King   more similar news »
Today we look at issues surrounding content creation, and discuss some techniques and methods to help you produce the best content you can. For many Web users, blogging is all about text, and that's what we'll be focusing on here. By Paul Thewlis. 0922
Thu Jan 01, 1970
more from this source»»
The Prototype JavaScript Framework   more similar news »
Programmers tend to collect utility functions to perform common tasks. In this article we look at some of the key features of the Prototype JavaScript Framework and demonstrate how it can make your life easier. By Rob Gravelle. 0925
Thu Jan 01, 1970
more from this source»»
Controllers: Programming Application Logic   more similar news »
In CakePHP, controllers are the classes that handle browser requests and facilitate communication between models and views. This week you'll learn the nuts and bolts of CakePHP controller. By Ahsanul Bari, Anupom Syam. 0929
Thu Jan 01, 1970
more from this source»»
How to Use JavaScript to Validate Form Data   more similar news »
This article discusses how to use JavaScript to validate important types of form data, including names, addresses, URLs, email addresses, phone numbers, zip codes, expiration dates and credit card numbers (Visa, Master Card, Discover, and American Express, in both Canadian and US formats). By Joseph Myers. 1002
Thu Jan 01, 1970
more from this source»»
Controllers: Programming Application Logic - Part 2   more similar news »
In CakePHP, controllers are the classes that handle browser requests and facilitate communication between models and views. This week we will learn the nuts and bolts of the CakePHP controller. By Ahsanul Bari, Anupom Syam. 1006
Thu Jan 01, 1970
more from this source»»
Popular JavaScript Framework Libraries: An Overview   more similar news »
Javascript Framework libraries have become an integral part of Web development. This series will present an overview of a dozen of the most popular JavaScript Frameworks. This week's article will focus on Prototype, script.aculo.us and MooTools. By Rob Gravelle. 1008
Thu Jan 01, 1970
more from this source»»
Anatomy of an Ajax Application   more similar news »
This week you'll learn about the individual building blocks of Ajax and how they fit together to form the architecture of an Ajax application. Later on, you'll examine these components in more detail, finally assembling them into a working Ajax application. By Phil Ballard and Michael Moncur. 1013
Thu Jan 01, 1970
more from this source»»
Book Review: Website Optimization   more similar news »
This book focuses on increasing conversion rates and optimizing the site for search engines. There are many case studies and examples, along with valuable tips and techniques for increasing the speed of your Web site. By Lee Underwood. 1015
Thu Jan 01, 1970
more from this source»»
Build Your Online Business with Opt-In Lists   more similar news »
Opt-in lists, sometimes known as permission based marketing, is an effective way of building your business. In this article, you'll learn the different ways of collecting data for ongoing campaigns. By Steve Renner. 1020
Thu Jan 01, 1970
more from this source»»
How to Avoid Common SSL Usage Mistakes   more similar news »
This week we look at some of the common SSL usage mistakes made by beginners and experts alike and the remedies. Among other things, you'll learn how to use encrypted connections. By Stephen Philbin. 1023
Thu Jan 01, 1970
more from this source»»
ASP.NET Compilation Models   more similar news »
This week we discuss the details of how ASP.NET applications are compiled. This information isn't vital to your success as an ASP.NET developer, but understanding the architecture of your development environment makes you a better developer. By Jim Cheshire. 1027
Thu Jan 01, 1970
more from this source»»
Popular JavaScript Framework Libraries: An Overview - Part 2   more similar news »
Last time we discussed the Prototype, script.aculo.us and MooTools Frameworks. This week we look at three strong contenders for the title of Framework supremacy: JQuery, the Yahoo! UI Library (YUI) and MochiKit. By Rob Gravelle. 1030
Thu Jan 01, 1970
more from this source»»
PHP 5 CMS Framework Development: Access Control   more similar news »
Many Web sites want to control who has access to what. There are many situations where access control is appropriate, and they can easily become very complex. Here we look at the most highly regarded model–role-based access control (RBAC) system - and find ways to implement it. By Martin Brampton 1103
Wed Dec 31, 1969
more from this source»»
How to Understand Color Codes   more similar news »
In this article you'll learn how the mechanism behind color code values works with the aid of a simple program. The program, Colourcoder, is designed to not only let you find a color you want with ease, but also help you gain a more intuitive grasp of color codes while you use it. By Stephen Philbin. 1105
Wed Dec 31, 1969
more from this source»»
Book Review: Content Rich   more similar news »
Copywriting is often a daunting task. It's not uncommon for a copywriter to spend days or weeks on a project. In this book, you'll learn how to analyze the copy on an existing site, how to improve the layout of Web sites in relation to SEO, and more. By Lee Underwood. 1110
Wed Dec 31, 1969
more from this source»»
xref: Automatic Cross Referencing Script   more similar news »
Available in static JavaScript and dynamic (with a Perl back-end) flavors, the WebReference xref script is a traffic-building tool that enables you to automatically insert links into your Web pages whenever a key term is encountered on the page. By Dan Ragle. 1113
Wed Dec 31, 1969
more from this source»»
List:
5 10 15 20 25 30 [35] 40 50
Page:
<< Prev 1 [2] 3 Next >>