Archive

Archive for May, 2006

TaskLister – My first project on CodeProject

May 26th, 2006 No comments

I have submitted my first article for CodeProject.com – Which you can find at http://www.codeproject.com/csharp/TaskLister.asp.

VN:F [1.9.18_1163]
Rating: 0.0/5 (0 votes cast)
Categories: DOTNET, News

Dynamic loading of content in a Dropdown box – without Ajax – Part II

May 25th, 2006 No comments

This is same as my previous blog “Dynamic loading of content in a Dropdown box – without Ajax – Part I”, but I have used PHP with MySQL connectiviry for doing this.

< ?_php
require_once "db_common.inc";
db_connect();
$res = mysql_query("select * from category where parent_id=0 and language_id=1");
$i=0;
echo "";
?>

VN:F [1.9.18_1163]
Rating: 0.0/5 (0 votes cast)
Categories: PHP, Web Design

Dynamic loading of content in a Dropdown box – without Ajax – Part I

May 25th, 2006 No comments

This code demonstrates a depricated way (my words) of dynamically filling dropdown list boxes based on the input value from another dropdown box.

Categories

Sub Categories


VN:F [1.9.18_1163]
Rating: 0.0/5 (0 votes cast)
Categories: PHP, Web Design

Javascript – Copy to Clipboard

May 4th, 2006 No comments

Here is a sample code which demonstates “How to copy/save text to Clipboard”






VN:F [1.9.18_1163]
Rating: 2.5/5 (2 votes cast)
Categories: Web Design