Home > Rss Directory > Technology > WebReference


List:
5 10 15 20 [25] 30 35 40 50
Page:
<< Prev [1] 2 3 Next >>
Implement Drag and Drop in Your Web Apps: Part 2   more similar news »
Last time we looked at how to use the dnd module. This week, we look at how it's implemented. Like all GWT modules, our drag-and-drop module has an XML configuration file. It also has some Java classes and interfaces. David Geary and Rob Gordon. 0505
Thu Jan 01, 1970
more from this source»»
How to Gain the Trust of Your List   more similar news »
When building a list, a key ingredient is to consistently offer valuable and products and services, free of charge. Doing so will enable you to obtain the trust of your clients. This article shows you how. By Steve Renner. 0312
Thu Jan 01, 1970
more from this source»»
Transparency in Ajax Applications   more similar news »
An average user might not be aware that the logic of the Ajax application is more exposed than that of the standard Web page. It's relatively simple for an advanced user (or an attacker) to "look inside" and gain knowledge about the internal workings of the application. By Billy Hoffman and Bryan Sullivan. 0317
Thu Jan 01, 1970
more from this source»»
Black Hat Techniques   more similar news »
As search engine optimization has grown more popular, so has the use of unethical SEO techniques. After you've read this, you'll know what techniques are underhanded and which are acceptable. By Terry Detty. 0321
Thu Jan 01, 1970
more from this source»»
Transparency in Ajax Applications - Part 2   more similar news »
Beyond the general danger of revealing application logic to potential attackers, there are specific mistakes that programmers make when writing client-side code that can open their applications to attack. By Billy Hoffman and Bryan Sullivan. 0324
Thu Jan 01, 1970
more from this source»»
How to Create an Ajax Autocomplete Text Field   more similar news »
In the last article, you learned how AJAX can be used to link the contents of a select field to a parent one. Now we're going to use AJAX to create an Autocomplete text field using the Eclipse Web Tools Platform with the Apache Tomcat server. By Rob Gravelle. 0326
Thu Jan 01, 1970
more from this source»»
Working With Forms   more similar news »
Forms are how your users talk to your scripts. To get the most out of PHP, you must master forms. While PHP makes it easy to access form data, you need to take security measures since you cannot trust the data supplied by an HTML form. By William Steinmetz with Brian Ward. 0331
Thu Jan 01, 1970
more from this source»»
How to Create an Ajax Autocomplete Text Field: Part 2   more similar news »
This week we'll construct the The Fund Java class, which will act as a container for all the fund's properties. On the server, we'll store a collection of funds to be searched. Matching ones will be converted to a JSON array and returned to the browser for displaying in our Autocomplete list. By Rob Gravelle. 0403
Thu Jan 01, 1970
more from this source»»
Customizing and Managing Your Site's Appearance   more similar news »
ASP.NET 2.0 provides a number of ways to customize the style of pages and controls in your Web application. This week we examine the various properties of Web server controls, how to use CSS with ASP.NET and how to work with themes, master pages and user controls. By Randy Connolly. 0407
Thu Jan 01, 1970
more from this source»»
How to Create an Ajax Autocomplete Text Field: Part 3   more similar news »
This week we'll be developing the AutocompleteServlet. The servlet acts much like an ASP, Perl or PHP script in that it's executed by the server and accepts parameters from the browser. By Rob Gravelle. 0409
Thu Jan 01, 1970
more from this source»»
Customizing and Managing Your Site's Appearance - Part 2   more similar news »
This week we'll look at an example that demonstrates the dynamic selection of themes. The page contains no appearance markup, only structured content. All formatting is contained in the theme skins and CSS files. By Randy Connolly. 0414
Thu Jan 01, 1970
more from this source»»
How to Create an Ajax Autocomplete Text Field: Part 4   more similar news »
In part 3 of the series, we added the brains behind our Autocomplete text field's search functionality. Now it's time to turn our attention to the Web components. This week we'll create the CSS file, since it, along with the JavaScript file, need to be linked to the AutocompleteSearch.jsp page. By Rob Gravelle. 0416
Thu Jan 01, 1970
more from this source»»
Customizing and Managing Your Site's Appearance - Part 3   more similar news »
When a page that uses a master page (i.e. a content page) is requested, ASP.NET merges the content page and master page together (assuming both have been compiled) by inserting the master page's content at the beginning of the content page's control tree. This means that the master page content is actually a control added to the page. By Randy Connolly. 0421
Thu Jan 01, 1970
more from this source»»
Email Marketing for MySpace Artists   more similar news »
The competition for attention on MySpace is intense. Many artists want to stand out from the crowd, but it can be difficult to break through the clutter. Enter email marketing, which gives artists the ability to send out newsletters, targeted email campaigns and more. By Robert Burko. 0423
Thu Jan 01, 1970
more from this source»»
Implement Drag and Drop in Your Web Apps   more similar news »
With the advent of GWT (Google Web Toolkit), we have drag-and-drop capabilities in a Java-based Web application framework. In this solution, we implement drag and drop in its own module, allowing you to easily incorporate it into your applications. By David Geary and Rob Gordon. 0428
Thu Jan 01, 1970
more from this source»»
How to Create an Ajax Autocomplete Text Field: Part 5   more similar news »
In part 4 of the series, we defined the appearance of our autocomplete control using an external cascading style sheet (CSS). This week we'll create a JavaScript file to manage the behavior of the autocomplete control in the browser. By Rob Gravelle. 0501
Thu Jan 01, 1970
more from this source»»
Perl Pragma Primer   more similar news »
Pragmas in Perl are specific instructions that we can embed in Perl code, depending on our needs and preferences, that allow our scripts to be compiled and behave differently than they would otherwise. In this article, we look at how pragmas work. By Dan Ragle. 0508
Thu Jan 01, 1970
more from this source»»
Software Engineering for Ajax   more similar news »
A great advantage of using the Google Web Toolkit (GWT) when building Ajax applications is leveraging advanced software engineering. This week you'll learn how to use the Java software engineering tools in GWT to build high-quality Ajax applications. By Ryan Dewsbury. 0512
Thu Jan 01, 1970
more from this source»»
How to Create an Ajax Autocomplete Text Field: Part 6   more similar news »
In part 5 of the series, the AutocompleteList JavaScript file, we wrote the client-side script to manage the behavior of the Autocomplete control in the browser. This week we're going to finish the remaining Web files, including the AutocompleteSearch.jsp page. 0515
Thu Jan 01, 1970
more from this source»»
Software Engineering for Ajax - Part 2   more similar news »
Eclipse provides a nice environment for debugging a running Java application. When launched, the application runs in the hosted mode browser. In Debug mode, the hosted mode browser is connected to Eclipse and can use Eclipse's debugging commands. By Ryan Dewsbury. 0519
Thu Jan 01, 1970
more from this source»»
How to Create an Ajax Autocomplete Text Field: Part 7   more similar news »
In this series we've built a fully functional Autocomplete control within Eclipse. For the remaining installments, we'll be updating the Autocomplete control's layout to CSS, decoupling it from the Autocomplete.jsp page, tweaking the appearance of the list, and implementing additional functionality. By Rob Gravelle. 0522
Thu Jan 01, 1970
more from this source»»
How to Build a Profitable Opt-In List   more similar news »
One of the most important aspects of having an online business is a good opt-in list. To have a list is one thing, to make it successful is another. In this article you'll learn how to create an opt-in list - the right way. By Christina Lang. 0527
Thu Jan 01, 1970
more from this source»»
How to Create Inline Video in WordPress with Camtasia Studio   more similar news »
This week you'll learn how to embed video from Camtasia Studio in WordPress. The key to making all of this work is the Kimli Flash Embed (KFE) plug-in. The entire process is detailed in this article. By Nathan Segal. 0530
Thu Jan 01, 1970
more from this source»»
Refactoring HTML: Well-Formedness   more similar news »
The first step in moving markup into modern form is to make it well-formed. Well-formedness guarantees a single unique tree structure for the document that can be operated on by the DOM, thus making it the basis of reliable, cross-browser JavaScript. Elliotte Rusty Harold. 0602
Thu Jan 01, 1970
more from this source»»
How to Create an Ajax Autocomplete Text Field: Part 8   more similar news »
This week we look at how to add a vertical scrollbar to the list. We're also going to use a parameter to set the list size, so a vertical scrollbar will appear when the number of items exceeds it. By Rob Gravelle. 0605
Thu Jan 01, 1970
more from this source»»
List:
5 10 15 20 [25] 30 35 40 50
Page:
<< Prev [1] 2 3 Next >>