<?xml version="1.0" encoding="iso-8859-1" ?>
<rss version="2.0">
<channel>
<title>Dotnetindex.com JSP, ASP, ASP.NET,PHP, VBSCRIPT, RUBY, JAVA, SECURITY</title>
<link>http://www.dotnetindex.com</link>
<generator>http://www.gazatem.com/</generator>
<item>
<title><![CDATA[Editable Datagrid for Ruby on Rails Built with dhtmlxGrid]]></title>
<link>http://www.dotnetindex.com/articles/9415-Editable-Datagrid-for-Ruby-on-Rails-Built-with-dhtmlxGrid.asp</link>
<description>
<![CDATA[
<p>
This tutorial will guide you how to display tabular data in Ruby on Rails 
with <a href="http://dhtmlx.com/docs/products/dhtmlxGrid/">dhtmlxGrid</a> 
Standard Edition, which is available under GNU GPL. We will end up with a 
datagrid with in-line editing, sorting, and filtering, which loads its data from 
server and saves it back to the database using Ruby on Rails.
</p>
<p>
As an example, we will create a table of users. This is a quite common task 
nearly for any web application. Working with RoR, we could use scaffolds but 
they are not so good for navigation on large sets of data. Besides, dhtmlxGrid 
has client-side editing and filtering functionality, which can simplify things a 
lot. This is how our final grid will look like:
</p>
]]>
</description>
</item>
<item>
<title><![CDATA[Creating a Simple Web Application Using a MySQL Database]]></title>
<link>http://www.dotnetindex.com/articles/9399-Creating-a-Simple-Web-Application-Using-a-MySQL-Database.asp</link>
<description>
<![CDATA[
This document describes how to create a simple web application that 
connects to a MySQL
database server. It also covers some basic ideas and 
technologies in web development,
such as <a href="http://java.sun.com/products/jsp">JavaServer
Pages</a> (JSP),
<a href="http://java.sun.com/products/jsp/jstl/">JavaServer 
Pages Standard Tag Library</a>
(JSTL), the <a href="http://java.sun.com/products/jdbc/overview.html">Java Database
Connectivity</a> (JDBC) API, and two-tier, client-server 
architecture. This tutorial
is designed for beginners who have a basic understanding of 
web development and are
looking to apply their knowledge using a MySQL database.
]]>
</description>
</item>
<item>
<title><![CDATA[How to Create an Image in PHP]]></title>
<link>http://www.dotnetindex.com/articles/9398-How-to-Create-an-Image-in-PHP.asp</link>
<description>
<![CDATA[
<p>
PHP makes it very easy to do many things needed on a website, among 
which is to create an image. The ability to generate an image in PHP
can be useful if you want to do things like create <a href="http://www.thefreecountry.com/php/captcha.shtml" target="_top">CAPTCHA
images</a>,
or even design a banner or logo on the fly the way some
<a href="http://www.thefreecountry.com/php/free-blog-scripts.shtml" target="_top">free blogging software</a> do.
</p>
<p>
By the end of <a href="http://www.thesitewizard.com/php/create-image.shtml" target="_top">this
tutorial</a>, you will be able
to create or modify an existing image using PHP, set the colours of its 
background, the text and the lines you draw, write
text to that image, draw a line and set its thickness. You will also be 
able to either send that image to a web browser
or to save it as a file. Armed with this basic foundation, you will also
be able to knowledgeably explore further and
perform more complex operations on images using PHP if you wish.
</p>
]]>
</description>
</item>
<item>
<title><![CDATA[How to Prevent Email Injection in Your PHP Form to Mail Scripts]]></title>
<link>http://www.dotnetindex.com/articles/9397-How-to-Prevent-Email-Injection-in-Your-PHP-Form-to-Mail-Scripts.asp</link>
<description>
<![CDATA[
Nowadays, many websites no longer post their webmasters' email 
addresses, preferring instead to put up a contact or feedback form. 
Without the plethora of
email addresses to harvest from websites, spammers have turned to using 
such feedback form scripts to send spam instead. If you are writing
your own feedback form script, it is important that you write your 
script in such a way so as to prevent spammers from hijacking the script
to spam others.
]]>
</description>
</item>
<item>
<title><![CDATA[Creating a Simple PHP Cache Script]]></title>
<link>http://www.dotnetindex.com/articles/9372-Creating-a-Simple-PHP-Cache-Script.asp</link>
<description>
<![CDATA[
Cache is a 
programming concept that can be used in a various range of applications 
and for various purposes. A cache library can be used for storing 
database queries for later use, to store rendered pages to be served 
again without generating them again, or to save indexed pages in a 
crawler application to be processed by multiple modules.
]]>
</description>
</item>
<item>
<title><![CDATA[Creating a Sun Effect]]></title>
<link>http://www.dotnetindex.com/articles/9371-Creating-a-Sun-Effect.asp</link>
<description>
<![CDATA[
In this quick tutorial I will demonstrate how to create a sun effect 
with rotating sunrays. We will achieve this with some basic ActionScript
and a some flash creativity.
]]>
</description>
</item>
<item>
<title><![CDATA[How to write a simple scraper in PHP without Regex]]></title>
<link>http://www.dotnetindex.com/articles/9370-How-to-write-a-simple-scraper-in-PHP-without-Regex.asp</link>
<description>
<![CDATA[
Web scrappers are simple programs that are used to extract certain data 
from the web. Usually the structure of the the pages is known so 
scrappers have reduced complexity compared to parsers and crawlers.
<p>
In this tutorial we are going to create a simple parser that extract 
the title and favicon from any html page.
</p>
]]>
</description>
</item>
<item>
<title><![CDATA[PHP cURL functions tutorial]]></title>
<link>http://www.dotnetindex.com/articles/9369-PHP-cURL-functions-tutorial.asp</link>
<description>
<![CDATA[
<p style="text-align: justify">
cURL is a library which allows you to 
connect and communicate to many different types of servers with many 
different types of protocols. Using cURL you can:
</p>
<ul>
	<li>Implement payment gateways&rsquo; payment notification scripts.</li>
	<li>Download and upload files from remote servers.</li>
	<li>Login to other websites and access members only sections.</li>
</ul>
<p style="text-align: justify">
<span class="caps">PHP</span> cURL 
library is definitely the odd man out. Unlike other <span class="caps">PHP</span>
libraries where a whole plethora of functions is made available, <span class="caps">PHP</span> cURL wraps up a major parts of its functionality
in just four functions.
</p>
]]>
</description>
</item>
<item>
<title><![CDATA[Managing Databases in MySQL]]></title>
<link>http://www.dotnetindex.com/articles/9367-Managing-Databases-in-MySQL.asp</link>
<description>
<![CDATA[
CREATE DATABASE statement will create the database with the given name  
you specified. IF NOT EXISTS is an option part of the statement, this  
part prevents you from error if there is a database with the given name 
exists on the <span class="IL_AD">database server</span>. 
In our tutorial, for example, to create <strong>classicmodels</strong> 
database, you just only apply CREATE DATABASE statement above as follows
]]>
</description>
</item>
<item>
<title><![CDATA[Submitting forms using PHP cURL]]></title>
<link>http://www.dotnetindex.com/articles/9368-Submitting-forms-using-PHP-cURL.asp</link>
<description>
<![CDATA[
In the previous article, we covered the <a href="http://phpsense.com/php/php-curl-functions.html"><span class="caps">PHP</span> cURL basics</a>. Specifically, we learned how to
connect to a remote <span class="caps">URL</span> and retrieve the <span class="caps">URL</span>&rsquo;s contents. In this article we will learn how 
to simulate form submission using <span class="caps">PHP</span> cURL.
]]>
</description>
</item>
<item>
<title><![CDATA[Spiral Exit Text Presentation]]></title>
<link>http://www.dotnetindex.com/articles/9373-Spiral-Exit-Text-Presentation.asp</link>
<description>
<![CDATA[
Using this thoroughly explained, detailed flash lesson, I will explain 
to you how to create spiral exit text presentation. This presentation 
can be used for some flash banner or for some animation. Let's start!
]]>
</description>
</item>
<item>
<title><![CDATA[How to learn table structure in MySQL]]></title>
<link>http://www.dotnetindex.com/articles/9337-How-to-learn-table-structure-in-MySQL.asp</link>
<description>
<![CDATA[
<font face="arial,helvetica,sans-serif" size="2">In mySQL there is a 
magic function named <strong>describe</strong>.You may get some specific 
information about a database table. Thisfunction returns all columnswith
their data types, default values and some extras. <br />
</font>
]]>
</description>
</item>
<item>
<title><![CDATA[HMVC: an Introduction and Application]]></title>
<link>http://www.dotnetindex.com/articles/9316-HMVC-an-Introduction-and-Application.asp</link>
<description>
<![CDATA[
This tutorial is an introduction to the Hierarchical Model View Controller(HMVC) pattern, and how it applies to web application development. For this tutorial, I will use examples provided from the CodeIgniter from Scratch series and demonstrate how HMVC can be a valuable modification to your development process. This introduction assumes you have an understanding of the Model View Controller (MVC) pattern. We suggest you read our introduction to MVC to get acquainted with the topic before tackling this tutorial.
]]>
</description>
</item>
<item>
<title><![CDATA[Using a flat-file database in Perl]]></title>
<link>http://www.dotnetindex.com/articles/9247-Using-a-flat-file-database-in-Perl.asp</link>
<description>
<![CDATA[
<p>
<font><font>You've all heard of a Poor Man's Copyright: when you come up with 
a great idea and you send it to yourself in the mail to prove it was your idea. 
Getting a real copyright can be a pain, and sometimes isn't worth the effort. A 
poor man's copyright doesn't have all of the benefits of a &quot;real&quot; one, but for 
the small stuff - it usually gets the job done.</font></font>
</p>
<p>
<font><font>When designing a website, the same sort of problem can arise, you 
have a project that needs a database setup, but you either don't have the money 
for a database package, or it's such a small database, that using a commercial 
package isn't worth the trouble.</font></font>
</p>
]]>
</description>
</item>
<item>
<title><![CDATA[Understanding Ruby Arrays]]></title>
<link>http://www.dotnetindex.com/articles/9245-Understanding-Ruby-Arrays.asp</link>
<description>
<![CDATA[
In <a href="../index.php/Understanding_Ruby_Variables" title="Understanding Ruby Variables">Understanding Ruby Variables</a> 
we looked at storing data (such as numbers, strings and boolean true or false 
values) in memory locations known as variables. The variable types covered in 
those chapters were useful for storing one value per variable. Often, however, 
it is necessary to group together multiple variables into a self contained 
object. This is where Ruby arrays come in. The objective of this chapter, 
therefore, is to introduce the concept of Arrays in Ruby and provide an overview 
of the creation and manipulation of such objects. In the next chapter (<a href="../index.php/Advanced_Ruby_Arrays" title="Advanced Ruby Arrays">Advanced 
Ruby Arrays</a>) we will look at more ways to work with arrays. 
]]>
</description>
</item>
<item>
<title><![CDATA[Uploading Image File Through JSP Code To Server]]></title>
<link>http://www.dotnetindex.com/articles/9246-Uploading-Image-File-Through-JSP-Code-To-Server.asp</link>
<description>
<![CDATA[
This Java API parses InputStream of HTTP POST request with multipart/form-data encode. By this Java API, only the single method call is enough for your file upload Servlets or JSP. 
<p>
The uploaded file can be saved on the file system. Your Servlets/JSP has the full control over where to save the uploaded files. Or if you don't want to save the uploaded files, your Servlets/JSP can get the binary contents, the file name and the Content-Type of the uploaded files. 
</p>
]]>
</description>
</item>
<item>
<title><![CDATA[Date and Time Representation in Python]]></title>
<link>http://www.dotnetindex.com/articles/9244-Date-and-Time-Representation-in-Python.asp</link>
<description>
<![CDATA[
There are many different ways to represent date and time in Python
programs. This page gives an overview over the different methods and
explains how to convert between different representations. The main focus
of this page is on how to represent points in time often assuming some
fixed, local time zone. This is used for example when analysing log files.
I will not explain here how to convert between different time zones or
between different calendars.
]]>
</description>
</item>
<item>
<title><![CDATA[The for loop]]></title>
<link>http://www.dotnetindex.com/articles/9243-The-for-loop.asp</link>
<description>
<![CDATA[
The for..in statement is another looping statement which
<span class="emphasis"><em>iterates</em></span> over a sequence of objects i.e. go through each item
in a sequence. We will see more about <a href="http://www.ibiblio.org/g2swap/byteofpython/read/sequences.html" title="Sequences">sequences</a> in
detail in later chapters. What you need to know right now is that a sequence is just
an ordered collection of items.
]]>
</description>
</item>
<item>
<title><![CDATA[ASP.NET, jQuery and Intellisense]]></title>
<link>http://www.dotnetindex.com/articles/9229-ASPNET-jQuery-and-Intellisense.asp</link>
<description>
<![CDATA[
Microsoft has partnered with jQuery and because of that, Visual Studio will now include jQuery; if you have downloaded the latest version of ASP.NET MVC, you should find that jQuery was included although it is version 1.2.6 (the current version is 1.3.2). 
<p>
jQuery is a JavaScript framework that is comprehensive in its current form and constantly improving; the jQuery community has developed a number of terrific plug-ins that continually make the kit more attractive, valuable, and useful; it you have not tried it out, it is definitely worth looking into.  As far as the plug-ins go, the tablesorter and tablesorter pager really make the whole thing worthwhile if you are working with MVC at all; I think it is a far better solution than using the paged list option demonstrated in the latest &quot;Nerd Dinner&quot; application made available by Guthrie, Hanselman, Haack, et al., if for no other reason than it handles both paging and sorting rather than just sorting.  Other plug-ins also support filtering lists such that if you wanted to display a filtered, sorted, paged list, you can do that with jQuery in a few lines of code, or you can spend quite a bit more time trying to accomplish the same thing in the controller and model code in an MVC application.  
</p>
]]>
</description>
</item>
<item>
<title><![CDATA[Developing Database Applications Using MySQL Connector/C++]]></title>
<link>http://www.dotnetindex.com/articles/9227-Developing-Database-Applications-Using-MySQL-ConnectorC.asp</link>
<description>
<![CDATA[
<p>
This tutorial will show you the essential steps to build and install
MySQL Connector/C++ driver, with simple examples to connect, insert,
and retrieve data from a MySQL database. Because the focus is on
database connectivity from a C++ application, this document assumes
that some kind of MySQL database is already up and accessible from the
client machine.
</p>
<p>
Application developers who are new to MySQL Connector/C++ but not to
C++ programming and MySQL database, are the target audience of this
tutorial.
</p>
]]>
</description>
</item>
<item>
<title><![CDATA[HIVELOCITY has got a great offer on dedicated servers]]></title>
<link>http://www.dotnetindex.com/articles/9225-HIVELOCITY-has-got-a-great-offer-on-dedicated-servers.asp</link>
<description>
<![CDATA[
Hivelocity.net specializes in dedicated web hosting and colocation. Hivelocity has over 100 hardware and bandwidth combinations available to ensure every customer gets exactly what they want and need.
]]>
</description>
</item>
<item>
<title><![CDATA[50% OFF Dedicated Server Hosting]]></title>
<link>http://www.dotnetindex.com/articles/9224-50-OFF-Dedicated-Server-Hosting.asp</link>
<description>
<![CDATA[
<span>50% Off Dedicated Server
Hosting Offer Ends Soon! Includes HUGE Bandwidth and Disk Space. Dual
and Quad Core Servers, Green Data Center, Free traffic tools &amp; 24x7
Support starting at only $99/mo.</span>
]]>
</description>
</item>
<item>
<title><![CDATA[Using a MySQL Database with C++]]></title>
<link>http://www.dotnetindex.com/articles/9226-Using-a-MySQL-Database-with-C.asp</link>
<description>
<![CDATA[
One of the most powerful combinations that any programmer can use is
the combination of C++ and MySQL - a flexible programming language with
a multi-platform and stable database; but this may seem an intimidating
task to the new software developer.
<div id="TixyyLink" style="border: medium none ; overflow: hidden; color: #000000; background-color: transparent; text-align: left; text-decoration: none">
&nbsp;<br />
</div>
]]>
</description>
</item>
<item>
<title><![CDATA[Future Hosting - VPS BLOWOUT! Double RAM & Triple Bandwidth + HUGE Discounts!]]></title>
<link>http://www.dotnetindex.com/articles/9223-Future-Hosting---VPS-BLOWOUT-Double-RAM--Triple-Bandwidth--HUGE-Discounts.asp</link>
<description>
<![CDATA[
<font face="Arial">Future Hosting now offers VPS services in Chicago,
Dallas, London, Seattle and Washington DC. All Managed VPSs include
free pro-active monitoring!</font><br />
<br />
<strong>Special Offers</strong> - <strong>Any Gold, Platinum, Elite or Titanium VPS</strong>:  <strong><font color="Red">30% the life of the VPS </font></strong><strong><font color="Red">AND Double RAM AND Triple Bandwidth</font></strong><strong><font color="Red"><br />
<br />
Coupon code: JIVE<br />
</font></strong><br />
<font face="Arial"><font color="Black"><br />
This offer is valid while this thread is still &quot;stickied&quot; at the top of  the VPS Offers forum. <br />
<br />
Open a ticket with sales after your VPS has been provisioned to add the
bonus ram/bandwidth (do not add them on the order form as you will be
billed for them, we will add them after the fact)</font></font>
]]>
</description>
</item>
<item>
<title><![CDATA[Applet and Servlet Communication]]></title>
<link>http://www.dotnetindex.com/articles/9186-Applet-and-Servlet-Communication.asp</link>
<description>
<![CDATA[
<font><font size="2">Java servlets provide a new and exciting method of developing
server-side solutions. Servlets provide the features of traditional CGI scripts with the
added benefits of efficiency and portability. Currently, major corporations are making the
migration from CGI scripts to Java servlets. As a result, the demand for applet and
servlet communication is on the rise.</font></font>
]]>
</description>
</item>
<item>
<title><![CDATA[Tagged and Bagged]]></title>
<link>http://www.dotnetindex.com/articles/9187-Tagged-and-Bagged.asp</link>
<description>
<![CDATA[
Ever since Sun Microsystems (aka &quot;the dot in dot-com&quot;) came up with
Java, the geeks have been screaming themselves hoarse about the wonders
of this technology. Terms like &quot;platform-independent code&quot; and &quot;write
once, run anywhere&quot; have been given so much airplay that even novice
Java developers are aware of them, and the language is also popular
with talk-show pundits and Internet consultants, who tout it as the
solution to almost all problems of cross-platform compatibility.
]]>
</description>
</item>
<item>
<title><![CDATA[Using Regular Expressions with Ruby]]></title>
<link>http://www.dotnetindex.com/articles/9185-Using-Regular-Expressions-with-Ruby.asp</link>
<description>
<![CDATA[
Ruby supports regular expressions as a language feature.  In Ruby, a regular expression is written in the form of /pattern/modifiers
where &quot;pattern&quot; is the regular expression itself, and &quot;modifiers&quot; are a
series of characters indicating various options. The &quot;modifiers&quot; part
is optional.
]]>
</description>
</item>
<item>
<title><![CDATA[Image manipulation and watermarking in PHP with GD2]]></title>
<link>http://www.dotnetindex.com/articles/9089-Image-manipulation-and-watermarking-in-PHP-with-GD2.asp</link>
<description>
<![CDATA[
The following functions are what I usually use to handle images in my projects. We&rsquo;ve got reScaleImage which will resize and save an image, keeping aspect ratio.<br />
<br />
We&rsquo;ve got constrainImage which will only get new width and height for an image if it is to be scaled using constraints in both x and y. Let&rsquo;s pretend we&rsquo;ve got an image that&rsquo;s 1000&times;500 and pass its filename and 500 and 500 as constraints on x and y. It should then return 500&times;250. This function will not actually do anything with the image itself, only get the new dimensions.
]]>
</description>
</item>
<item>
<title><![CDATA[Making A Cool Login System With PHP, MySQL & jQuery]]></title>
<link>http://www.dotnetindex.com/articles/9088-Making-A-Cool-Login-System-With-PHP-MySQL--jQuery.asp</link>
<description>
<![CDATA[
<p>
Today we are making a cool &amp; simple login / registration system.
It will give you the ability to easily create a member-only area on
your site and provide an easy registration process.
</p>
<p>
It is going to be PHP driven and store all the registrations into a MySQL database.
</p>
]]>
</description>
</item>
<item>
<title><![CDATA[Build a customizable RSS feed aggregator in PHP]]></title>
<link>http://www.dotnetindex.com/articles/9072-Build-a-customizable-RSS-feed-aggregator-in-PHP.asp</link>
<description>
<![CDATA[
RSS (Rich Site Summary, RDF Site Summary, or Really Simple Syndication)
has been around since the mid-1990s. Over the years, several variants
of the RSS format have popped up and several claims have been made
about its ownership. Despite these differences, RSS never ceased to
serve its usefulness in distributing Web content from one Web site to
many others. The popularity of RSS gave way to the growth of a new
class of Web software called the <em>feed reader</em>, also known as the <em>feed aggregator</em>.
Although there are several commercially available feed aggregators,
it's easy to develop your own feed aggregator, which you can integrate
with your Web applications. You'll appreciate this article's fully
functional PHP code snippets, demonstrating the use of PHP-based
server-side functions to develop a customizable RSS feed aggregator. In
addition, you'll reap instant benefits from using the fully functional
RSS feed aggregator code, which you can download from this article.
]]>
</description>
</item>
<item>
<title><![CDATA[Custom RSS 2.0 Content Feeds using OOP]]></title>
<link>http://www.dotnetindex.com/articles/9071-Custom-RSS-20-Content-Feeds-using-OOP.asp</link>
<description>
<![CDATA[
With WEB 2.0 fast approaching we are scurrying to make our sites ready
for the change. Adding syndicated content to get a deeper reach in to
this web is one way to get started. In this tutorial i will show you
how to make your own RSS 2.0 Content Feed using Object Orientated
Programming for your website. At the end of the tutorial there will
also be the full script for you to learn by example or just cut out the
middle man and use it.
]]>
</description>
</item>
<item>
<title><![CDATA[PHP Development: Getting Started]]></title>
<link>http://www.dotnetindex.com/articles/9057-PHP-Development-Getting-Started.asp</link>
<description>
<![CDATA[
It's been a few years since I echo'd my first HELLO WORLD script. PHP
has developed and evolved and yes, it has changed since it was first
devised as little Perl extensions on Rasmus Lerdorf's localhost. Still,
for a little Home Page script, it has grown into something that is now
used on over 200 million websites around the world. That is nothing to
be scoffed at. In this article we'll discuss the two most important
things we should try to remember when developing in PHP.
]]>
</description>
</item>
<item>
<title><![CDATA[How to Count all elements in an array]]></title>
<link>http://www.dotnetindex.com/articles/9056-How-to-Count-all-elements-in-an-array.asp</link>
<description>
<![CDATA[
PHP <a href="http://php.net/manual/en/function.count.php">Count function</a> can <span class="dc-title">count all elements in an array, or properties in an object. Counting an array gives us array kength which is </span>umber of elements it contains. 
]]>
</description>
</item>
<item>
<title><![CDATA[Building tiny web-applications in Ruby using Sinatra]]></title>
<link>http://www.dotnetindex.com/articles/9041-Building-tiny-web-applications-in-Ruby-using-Sinatra.asp</link>
<description>
<![CDATA[
<span style="border-collapse: separate; color: #000000; font-family: 'Times New Roman'; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px" class="Apple-style-span"><span style="color: #2c3b42; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 16px" class="Apple-style-span">Sinatra is a library that allows you to build almost any kind of web-based in a very simple manner. When you code in Sinatra you&rsquo;re bound only by HTTP and your Ruby knowledge. You'll obviously want to start building tiny web-applications and small services, and that's just what we'll do in this article. By the end of this article by Satish Talim, you'll be able to understand how to install Sinatra and its dependencies and how to deploy the tiny web-app to Heroku.</span></span>
]]>
</description>
</item>
<item>
<title><![CDATA[HTML Default Hyperlink Colors]]></title>
<link>http://www.dotnetindex.com/articles/9040-HTML-Default-Hyperlink-Colors.asp</link>
<description>
<![CDATA[
<span style="border-collapse: separate; color: #000000; font-family: 'Times New Roman'; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px" class="Apple-style-span"><span style="color: #2c3b42; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 16px" class="Apple-style-span">Ever work on hyperlinks on your webpage or blog and suddenly think, &quot;What are the default colors for HTML hyperlinks?&quot;. This tutorial answers this question with a handy reference on the default HTML hyperlink colors in their four states.</span></span>
]]>
</description>
</item>
<item>
<title><![CDATA[HTML 5 Tutorial – Rounded Corners]]></title>
<link>http://www.dotnetindex.com/articles/9039-HTML-5-Tutorial--Rounded-Corners.asp</link>
<description>
<![CDATA[
<span style="border-collapse: separate; color: #000000; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px" class="Apple-style-span"><span style="font-family: Calibri,Candara,Verdana,Arial,sans-serif; font-size: 14px; line-height: 22px" class="Apple-style-span">In a<span class="Apple-converted-space">&nbsp;</span><a style="border-width: 0px; margin: 0px; padding: 0px; outline-width: 0px; font-size: 14px; vertical-align: baseline; background-color: transparent; color: #004b91" href="http://www.spicywebdesign.com/html-5-tutorial-a-simple-web-page-layout/" target="_blank">previous tutorial</a>, we demonstrated a simple HTML 5 web page layout. In this tutorial, we will change the look of some of the HTML 5 elements and give them rounded corners using CSS (cascading style sheets) rules. We will also separate the elements using margins to give these elements a floating appearance.</span></span>
]]>
</description>
</item>
<item>
<title><![CDATA[Making A Cool Login System With PHP, MySQL & jQuery]]></title>
<link>http://www.dotnetindex.com/articles/9042-Making-A-Cool-Login-System-With-PHP-MySQL--jQuery.asp</link>
<description>
<![CDATA[
<span style="border-collapse: separate; color: #000000; font-family: 'Times New Roman'; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px" class="Apple-style-span"><span style="color: #2c3b42; font-family: Arial,Helvetica,sans-serif; font-size: 13px; line-height: 16px" class="Apple-style-span">We are developing a cool and simple login/registration system in a few easy to follow steps. You can download the complete source code and modify it to fit your own needs.</span></span>
]]>
</description>
</item>
<item>
<title><![CDATA[Connecting to a MySQL Database using Connector/J JDBC Driver]]></title>
<link>http://www.dotnetindex.com/articles/8867-Connecting-to-a-MySQL-Database-using-ConnectorJ-JDBC-Driver.asp</link>
<description>
<![CDATA[
In this tutorial following topics will be covered:
<p>
What are Database URLs in JDBC?<br />
Why and how to specify a JDBC Driver name?<br />
How to create a connection to a Database?<br />
An example on how to connect to a MySQL Database?
</p>
]]>
</description>
</item>
<item>
<title><![CDATA[5 Developing Java Stored Procedures]]></title>
<link>http://www.dotnetindex.com/articles/8868-5-Developing-Java-Stored-Procedures.asp</link>
<description>
<![CDATA[
<span style="border-collapse: separate; color: #000000; font-family: 'Times New Roman'; font-size: medium; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px" class="Apple-style-span"><span style="font-family: Tahoma,sans-serif; font-size: small" class="Apple-style-span">Oracle JVM has all the features you must build a new generation of enterprise-wide applications at a low cost. The most important feature is the support for stored procedures. Using stored procedures, you can implement business logic at the server level, thereby improving application performance, scalability, and security.</span></span>
]]>
</description>
</item>
<item>
<title><![CDATA[Introduction to VBScript and Windows Script Host]]></title>
<link>http://www.dotnetindex.com/articles/8866-Introduction-to-VBScript-and-Windows-Script-Host.asp</link>
<description>
<![CDATA[
<span style="border-collapse: separate; color: #000000; font-family: 'Times New Roman'; font-size: 16px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px" class="Apple-style-span">This is a brief introduction to the VBScript language under Windows Script Host (WSH). The target audience is community college students taking their first-year &quot;computer concepts&quot; classes, most of whom have not taken an operating systems class or formal programming language class. &nbsp;</span>
]]>
</description>
</item>
<item>
<title><![CDATA[Rolling with Ruby on Rails]]></title>
<link>http://www.dotnetindex.com/articles/8865-Rolling-with-Ruby-on-Rails.asp</link>
<description>
<![CDATA[
Maybe you've heard about Ruby on Rails, the super productive new way to develop web applications, and you'd like to give it a try, but you don't know anything about Ruby or Rails. This article steps through the development of a web application using Rails. It won't teach you how to program in Ruby, but if you already know another object-oriented programming language, you should have no problem following along (and at the end you can find links on learning Ruby).
]]>
</description>
</item>
<item>
<title><![CDATA[Four Days on Rails]]></title>
<link>http://www.dotnetindex.com/articles/8864-Four-Days-on-Rails.asp</link>
<description>
<![CDATA[
There have been many extravagant claims made about Rails. For example, Curt Hibbs' Rolling with Ruby on Railsclaimed that you could develop a web application at least ten times faster with Rails than you could with a typical Java framework... The article then goes on to show how to install Rails and Ruby on a PC and build a working &quot;scaffold&quot; application with virtually no coding.
<p>
&nbsp;
</p>
]]>
</description>
</item>
<item>
<title><![CDATA[Java file handling tutorial]]></title>
<link>http://www.dotnetindex.com/articles/8850-Java-file-handling-tutorial.asp</link>
<description>
<![CDATA[
One of the most frequently used task in programming is writing to and reading from a file. To do this in Java there are more possibilities. At this time only the most frequently used text file handling solutions will be presented
]]>
</description>
</item>
<item>
<title><![CDATA[Using the Ruby DBI Module]]></title>
<link>http://www.dotnetindex.com/articles/8836-Using-the-Ruby-DBI-Module.asp</link>
<description>
<![CDATA[
The Ruby DBI module provides a database-independent interface
for Ruby scripts similar to that of the Perl DBI module. This
document describes how to write Ruby DBI-based scripts. It is
an adjunct to and not a substitute for the Ruby DBI specification
documents. See the &quot;Resources&quot; section for a pointer
to the specifications and also for information about downloading
the example scripts used here.
]]>
</description>
</item>
<item>
<title><![CDATA[Using the Ruby MySQL Module]]></title>
<link>http://www.dotnetindex.com/articles/8835-Using-the-Ruby-MySQL-Module.asp</link>
<description>
<![CDATA[
Programs that access MySQL databases can be written in the Ruby
scripting language by using Tomita Masahiro's MySQL module. This
module provides a Ruby client API; it is implemented as a wrapper
around the MySQL C client API. This document describes how to
install the MySQL module and use it to write MySQL-based Ruby
scripts. A related document describes the Ruby DBI module that
provides a higher-level interface that is more abstract and database-independent.
See the &quot;Resources&quot; section for a pointer to that document
and also for information about downloading the example scripts
used here.
]]>
</description>
</item>
</channel>
</rss>
