Welcome to my Blogsite!

http://www.blogsite.psvphil.com

http://aurelie.prepys.com

http://www.ideas.itsmartlab.com

HOME

Most Recent Posts:

CSS and ASP.NET Master Page - an easy approach to create websites

By Aurelie A. Peralta

There are a lot of free CSS templates nowadays. CSS makes website development fast and also stylish without too much use of graphics. The DIV tag approach as a replacement to the traditional TABLE tag layout makes it also more flexible and fluid in behavior. In ASP.NET, combining CSS templates with master pages turns out to be a very easy and comfortable approach that can enable a web developer produce multiple pages of a website. I actually tried to create one using these, and in just a few minutes I was able to create a business website with six pages. Here is the link http://www.developer.psvphil.com.

Connection to MS Access database using ODBC: My own ASP.NET 2.0 coding style

By Aurelie A. Peralta

If you dont have a good .NET IDE (Integrated Development Environment) but at least you have the following: an operating system with IIS with ASP.Net support, dotnet framework 2.0, Microsoft Access database and a text editor like Notepad, you may find these program codes helpful in creating a webpage that can retrieve records from your database. (actually my self-discovered coding style) Open your text editor and let us start working on this. (Read more...)

Simple ASP.NET User Login Accounts Maintenance Application

By Aurelie A. Peralta

This simple application demonstrates the following: 1. Basic ASP.NET page commands and IF control statement 2. Variables and Session variables 3. Secured page 4. Database connectivity using ODBC 5. SQL commands for Searching, Inserting, Deleting, and Updating records 6. Gridview object in ASP.NET Start developing the application by creating an Access database with the following structure: (Read more...)

HTML and CSS
HTML Programming and Cascading Style Sheets (CSS)

By Aurelie A. Peralta

Cascading Style Sheet makes webpage formatting easy. It allows web designers to effect formatting changes to the entire website in just editing a single CSS file. Predefined formats can be stored in the CSS file and can be called or used anywhere in the website. Because of this, web designing task is no longer tedious for web developers. In this example, I will create a simple HTML file HOME.HTM and a CSS file PSU.CSS. You can create these files using your favorite editor like notepad. The source code for the HOME.HTM is shown below: (Read more...)