Slide 1.4: Possible software to be used
Slide 1.6: Possible software to be used (cont.)
Home

Possible Software to Be Used (Cont.)


CSS (Cascading Style Sheet)
It is a style sheet language for specifying the appearance of text and other elements.

     


Microsoft ADO.NET (ActiveX Data Objects)
It is a data access technology from the Microsoft .NET Framework that provides communication between relational and non-relational systems through a common set of components. Check an example.

using System;
using System.Data.OleDb;

public partial class NextPage : System.Web.UI.Page {
 protected void authorList_SelectedIndexChanged( object sender, EventArgs e ) {
  OleDbConnection conn = new OleDbConnection(
    @"Provider=Microsoft.ACE.OleDb.12.0;Data Source=" +
    Server.MapPath( "Access\\bookstore.accdb" ) );
  String sql = "SELECT authorID, authorName, email ";
  sql += "FROM authors WHERE authorName = @authorName";
  OleDbCommand cmd = new OleDbCommand( sql, conn );
  cmd.Parameters.AddWithValue( "@authorName", authorList.SelectedValue );
  conn.Open( );
  var dbread = cmd.ExecuteReader( );
  author.DataSource = dbread;
  author.DataBind( );
  dbread.Close( );
  conn.Close( );
 }
}