Category Archives: Programming

Blog posts about programming in general or concerning languages that don’t fit in any other category.

VBScript For JSON

Tonight I found an Active Server Pages script for generating JSON from databases that ASP can connect to using ADO. This may be useful for understanding how to translate data into JSON. It may also prove handy for creating JSON … Continue reading

Posted in AJAX, Programming | Tagged , , , | Leave a comment

Silverlight Aggravation, Accounting Basics For Programmers, And Storefront

Last week I wasted a lot of time on Silverlight. I used the word “wasted” because after putting a lot of time in a project I discovered that it is impossible to create a simple hyperlink! I could scarcely believe … Continue reading

Posted in Business, Programming, Web | Tagged , , , , | Leave a comment

Recent Technology Research

I really want to return to creative pursuits but I’ve been spending most of my free time keeping up with changes in technology. I have a long list of research that I plan to do. Over the past week I … Continue reading

Posted in General, Programming, Web | Leave a comment

Twitter And Yahoo! Maps API

I’ve been reading the book “Amazon.com Mashups” by Francis Shanahan. This book covers more than the Amazon API so it has proven to be very useful in introducing me to many other Web 2.0 APIs. Its example for using the … Continue reading

Posted in AJAX, Programming, Web | Tagged , , , | 1 Comment

AJAX And JSON Are Making JavaScript Very Popular

I’ve been doing a lot of work with JavaScript lately. JavaScript has become very popular due to the AJAX craze. Every Web 2.0 site has to do something impressive with AJAX so web developers are becoming more creative with JavaScript. … Continue reading

Posted in AJAX, Programming, Web | 1 Comment

Amazon Mashups, Expression Web VBA, JSON Viewer

Here is a list of what I’ve been doing for the last two weeks:1. Started working with the Amazon web services API. I added a web page to my help collection Notes which gets my programming books wish list from … Continue reading

Posted in General, Programming, Web | Leave a comment

SubVersion

I’ve been reading many other programmer blogs to get a sense of what I need to know to remain marketable. When you work alone or on a small team you experience professional social isolation and don’t learn about the best … Continue reading

Posted in Programming | Leave a comment

JSON Web Services

I’ve recently learned that it is possible to create a web service which returns JavaScript Object Notation JSON rather than XML. ASP.NET 2.0 allows you to give a web service a ScriptService attribute which “AJAX enables” the Web Service and … Continue reading

Posted in ASP.NET, General, Programming | Leave a comment

ASP.NET 3.5 Released

I’ll blog about this here because everyone on the http://weblogs.asp.net/ site has already announced it. Microsoft has released the .NET Framework 3.5 which includes the new version of ASP.NET, known as ASP.NET 3.5. Visual Studio 2008 has also been released … Continue reading

Posted in ASP.NET, General, Programming | Leave a comment

Web Parts, YAML, Washington DC

This blog post is going to wrap up a week of activity that didn’t give me time to blog. This week I worked on an important web part that creates a parent / child relationship between two database tables. I … Continue reading

Posted in ASP.NET, Business, General, Programming | Leave a comment

C# Data Structures

I added a topic to my notes on C# data structures. I think I had a class in college on data structures. We used Pascal for that class. I still have my Pascal book and Pascal compilers but there is … Continue reading

Posted in ASP.NET, General, Programming | Leave a comment

TableAdapters And Transactions

I’ve been doing some more work with TableAdapters and transactions. I’ve learned how to extend the TableAdapter class to include support for handling transactions. Being able to extend a class to override a method or provide new methods is an … Continue reading

Posted in ASP.NET, General, Programming | Leave a comment

Cross-Page Posting

Today I added a help topic on Cross-Page Posting to my ASP.NET 2.0 notes. Cross-Page Posting allows a second ASPX page to get the form fields from a previous ASPX page when the form is submitted using the Post method. … Continue reading

Posted in ASP.NET, General, Programming | Leave a comment