Posts

Showing posts from September, 2021

Introduction to ASP.NET, Visual Studio and Hello Wrold Aplication

Image
  WebForm1.aspx --------------------- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="HelloWorldApp.WebForm1" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server">     <title>Hello World</title> </head> <body>     <form id="form1" runat="server">     <div>          </div>     </form> </body> </html> ------------------------------------------------------------------------------------------------------------------ WebForm1.aspx.cs ----------------------- using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace HelloWorldApp {     public partial class WebForm1 : System.Web.UI.Page     {         protected void Page_Load(object sender, EventAr...

JDBC with Oracle Demonstration

Image
 

JDBC with MySQL Demonstration

Image
 

Introduction to JDBC

Image
 

Introduction to J2EE

Image
 CS-25 J2EE Introduction to J2EE and NetBeans (IDE)