Recently changed documents

15Seconds.com

More documents like this are at:  CS-dotnet

21-Aug-03

http://www.15seconds.com/

1. .net resources
2. data access technologies
3. articles

SiliconIndia

More documents like this are at:  Technology Magazines

21-Aug-03

JavaWorld

More documents like this are at:  Technology Magazines

21-Aug-03

OnJava.com

More documents like this are at:  Technology Magazines

21-Aug-03

Some java script utilites from simplythebest

More documents like this are at:  CS-JavaScript

19-Aug-03

http://simplythebest.net/info/dhtml_scripts.html

1. time and date scripts
2. menu scripts
3. Javascript documentation links
4. A plug for dhtml

Edd Dumbill

More documents like this are at:  People to watch in Technology

15-Aug-03

http://usefulinc.com/edd/blog

Editor of xml.com

Microsoft Bloggers

More documents like this are at:  People to watch in Technology

14-Aug-03

http://www.microsoft-watch.com/article2/0,4248,933657,00.asp

This is a link taken from PCWEEK. Not sure how long it will be active.

Sleep after toil - A quote by Edmund Spenser

More documents like this are at:  Humanities 2007

5-Aug-03

Sleep after toil, 
Port after stormy seas, 
Ease after war, 
Death after life 
Does greatly please. 

-Edmund Spenser, poet (1552-1599) 

And more such could be found at the "a word a day link" at

http://www.wordsmith.org/words/today.html

Anu Garg: A word a day

More documents like this are at:  Humanities 2007

5-Aug-03

http://www.wordsmith.org/words/today.html

An inspired collection of words

Richard Corliss

More documents like this are at:  Movies

5-Aug-03

http://www.time.com/time/columnist/corliss/

Essayist and Movie Critic of both Western and recently Indian Films

Diane Ackerman (b. 1948)

More documents like this are at:  Humanities 2007

5-Aug-03

How to create a trim function for a string

More documents like this are at:  CS-JavaScript

4-Aug-03

Description to be entered

Example java script 1

More documents like this are at:  CS-JavaScript

4-Aug-03

How to include a javascript library
How to include a style sheet
A handful of javascript functions

Do you care about null values by Richard Lhotka

More documents like this are at:  CS-dotnet

4-Aug-03

Some ideas on how to deal with database nulls in the .net world

Paging through records in ASP

More documents like this are at:  CS-dotnet

22-Jul-03

Understanding Attributes in C#

More documents like this are at:  00.05-Articles

16-Jul-03

Attributes are widely used in .Net libraries such as XML serialization. The syntax of attributes is very confusing until you realize that attributes are actually classes. This article provides a quick guide to understanding attribute syntax, how to read it, and how to look up an attribute documentation to be able to spcify them in your programming practice.

Working with attributes and reflection

More documents like this are at:  CS-dotnet

15-Jul-03

A summary of writings on oscon2003

More documents like this are at:  OSCON-2003

14-Jul-03

autmn - patent information

More documents like this are at:  I will look at these someday

13-Jul-03

How to redirect to a different page on reload?

More documents like this are at:  CS-JavaScript

12-Jul-03

<html>
<head>
<script>
	function redirectTo()
	{
		location.replace("http://216.187.231.34/akc");
	}
</script>
</head>

<body onload="redirectTo()">
</body>
</html>

Cross-link Demo at OSCON

More documents like this are at:  OSCON-2003

7-Jul-03

http://216.187.231.34/akc/servlet/DisplayServlet?url=NotesURL&ownerUserId=satya&folderName=00.10-Conferences&aspire_output_format=user-aspire-templates&reportId=266

With much apologies to OSCON for using their content, this link will demonstrate the cross linking capabilities of AKC

Speaker Details for the O'Reilly Open Source

More documents like this are at:  OSCON-2003

3-Jul-03

Dear Satya,

Your final session dates and times follow for the 
O'Reilly Open Source Convention in Portland, Oregon,
July 7-11, 2003:

- Conference Session
  Session ID: 3865
  Title: Looking Beyond JDBC
  Date: 07/09/2003
  Time: 2:30pm to 3:15pm
  Location: Eugene

To see and do in portland

More documents like this are at:  OSCON-2003

3-Jul-03

Portland weather

More documents like this are at:  OSCON-2003

3-Jul-03

Speaker information

More documents like this are at:  OSCON-2003

3-Jul-03

http://philip.greenspun.com/wtr/index.html

A very interesting series of ideas on online web communities

javascript guide from navigator 3.0

More documents like this are at:  CS-JavaScript

28-Jun-03

Java script 1.4 guide

More documents like this are at:  CS-JavaScript

28-Jun-03

Links to a list of javascript guides

More documents like this are at:  CS-JavaScript

28-Jun-03

http://devedge.netscape.com/central/javascript/

Java script guides from 1.3 to 1.5

How to tokenize strings in c#

More documents like this are at:  CS-dotnet

24-Jun-03

char[] sepString = new char[]{'1'};
string[] userIdList = customerIdList.Split(sepString);