ASP.NET Tutorial – GridView and FormView – Part2

In this lesson, you will learn about the GridView and FormView controls and how you can use some of the features of these controls to make editing and displaying of database content easier. For Best View: watch the video in Full Screen Mode.

Flash PHP MySQL CMS – Content Management System Website Tutorial CS3 + CS4

Source Files – www.developphp.com In this Flash ActionScript 3.0, PHP, and MySQL tutorial video and source file download you can learn how to build slick CMS(Content Management Systems) for your client websites or for projects that require many people to input data. A Content Management System made in Flash makes editing content easier visually and … Read more

The Web Programming CD Bookshelf Version 1. 0

Product Description We’ve packed six of our best-selling Web Programming guides onto this CD-ROM, giving you 4,668 pages of O’Reilly references and tutorials — fully searchable and cross-referenced, so you can search either the individual index for each book or the master index for the entire collection. Included are the complete, unabridged versions of these … Read more

Asp.Net 2.0 & C# Photo gallery with upload (part 1)

step1: i’m creating a new website. make sure you select c# from the dropdownlist. step2: I’m importing an existing sql database file. Please refer to some other video about creating databases. step3: creating a new table. i’m not storing images in the database. i’m storing only their names. the images are stored in the “Images” … Read more

Many-To-Many Fields in ASP.NET/AJAX Web Apps

Learn to defined many-to-many fields in ASP.NET AJAX applications without writing a single line of code with Code ontime Generator. We will show you how to use the Check Box List lookup style with Target Controller property to create many-to-many fields. Automatic insertion and deletion of records in the junction table is supported and explained … Read more

Web Service Development for IBM websphere Application Server V7

For the full video please visit: eb5.elearn.ihost.com This course teaches students how to develop, debug, test, and monitor Web services for Java Platform, Enterprise Edition version 5 (Java EE 5) using IBM websphere Application Server V7. Java EE 5 represents a significant evolution in the Java enterprise programming model by providing application developers with considerable … Read more

Generate ASP.NET/AJAX web apps with Code ontime Generator

Code ontime Generator for Microsoft.NET creates modern ASP.NET/AJAX web applications with live ad hoc data export and reporting without external dependencies. Learn more at www.codeontime.com

Example with Source Code: A simple database-driven Java web application (CRUD) implementing JSP and Servlets

You can study and implement the following examples to create a simple Java-based database-driven web application which makes use of JSP and Servlets applying a MVC (model-view-controller) principle.

Create the following files:

DatabaseConnection.java

package sample;
import java.sql.*;

public class DatabaseConnection {

    public static Connection getConnection() {
    Connection con = null;
    try {
        // change the following line to your jdbc driver
        Class.forName("com.borland.datastore.jdbc.DataStoreDriver");
        // change this to "your database url", "username", "password"
        con = DriverManager.getConnection("jdbc:borland:dslocal:C:\\a.jds","Sample","");
        System.out.println(con);
        }
        catch (Exception ex) {
        ex.printStackTrace();
        }
    return con;
    }
}

Read more

20 Helpful jQuery Methods you Should be Using

So you’ve been playing with jQuery for a while now, you’re starting to get the hang of it, and you’re really liking it! Are you ready to take your jQuery knowledge to level two? Today, I’ll demonstrate twenty functions and features you probably haven’t seen before!


1 after() / before()

Sometimes you want to insert something into the DOM, but you don’t have any good hooks to do it with; append() or prepend() aren’t going to cut it and you don’t want to add an extra element or id. These two functions might be what you need. They allow you to insert elements into the DOM just before or after another element, so the new element is a sibling of the older one.

$('#child').after($('<p />')).text('This becomes a sibling of #child'));
$('#child').before($('<p />')).text('Same here, but this is go about #child'));

Read more