Category Archives: ASP.NET

Articles about my work in ASP.NET. Includes descriptions of anything new I’ve learned and solutions to technical problems I’ve encountered.

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

Eval For VB.NET

Today I was converting some ASP code to ASP.NET when I ran into a problem with the eval statement which is not supported in the NET Framework. Fortunately, I found a clever solution on the Internet at http://odetocode.com/Articles/80.aspx. You can … Continue reading

Posted in ASP.NET | Leave a comment

NPlot Bar Charts

There is a free charting component for ASP.NET by the name of NPlot but it is poorly documented and I could not figure out how to create a simple bar chart. I contacted one of the developers and he sent … Continue reading

Posted in ASP.NET, General | 3 Comments

Becoming A Better Programmer

I feel that I have become a much better programmer this year. I have learned a lot more about Visual Studio and now use all of its features. This includes using bookmarks to find my way back to lines of … Continue reading

Posted in ASP.NET | 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

Web Parts Export, Import and User Controls

I am still studying web parts. I’ve learned how to export and import web parts but I’m not sure how useful this is because you can’t share web parts with other sites. You can only export a web part that … Continue reading

Posted in ASP.NET | Leave a comment

Web Parts Properties, Verbs, And Connections

Today I expanded my knowledge of Web Parts, which is my favorite addition to ASP.NET in ASP.NET 2.0. I learned how to create custom properties for my web parts and I added a property to my Newsvine web part so … Continue reading

Posted in ASP.NET | Leave a comment

ASP.NET 2.0 – Control Adapters

I recently did some research on control adapters, another new feature of ASP.NET 2.0 that I read about in the book “Essential ASP.NET 2.0” by Fritz Onion and Keith Brown. Control adapters allow you to change the rendering of web … Continue reading

Posted in ASP.NET | Leave a comment

Transaction Savepoints

Today I learned how to roll back multiple database queries using transaction savepoints. This is useful when you have several related record inserts, updates, or deletes that should all succeed or all fail in order to maintain your data integrity. … Continue reading

Posted in ASP.NET, Databases | 1 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

ASP.NET 2.0 Master Page Properties & Navigation Controls

Today I created a new help topic on the Navigation Controls for ASP.NET 2.0. This is a topic that was not covered in the ASP.NET 2.0 For Dummies book. The navigation controls get their data from a XML sitemap but … Continue reading

Posted in ASP.NET | Leave a comment

Visual Studio Content Installer

I recently created a custom VSI file which is a kind of ZIP file used to install Visual Studio content. A Visual Studio Content Installer can be used to distribute macros, addins, code snippets, toolbox controls, or templates. I created … Continue reading

Posted in ASP.NET | Leave a comment

Visual Studio 2005 Item Templates

Yesterday I learned how to create custom Item Templates for Visual Studio 2005. An item template is used to add new items to a project like a starter class file. You can export any of your project files as an … Continue reading

Posted in ASP.NET | Leave a comment

Web Service Security

Most web service tutorials only show you how to return a simple string value and they don’t address security at all. All of the web services you create based on the tutorials will allow anonymous access over the Internet. Anonymous … Continue reading

Posted in ASP.NET, General | Leave a comment

ASP.NET 2.0 Health Monitoring

In addition to trace listeners, ASP.NET 2.0 has added a health monitoring system to log web events for a web application. Health Monitoring is similar to trace listeners with the additional option of logging the events to a SQL Server … Continue reading

Posted in ASP.NET | Leave a comment

log4net With ASP.NET 1.1

log4net provides the same sort of debug and trace logging capabilities as the trace listeners in ASP.NET 2.0 but it can be used in ASP.NET 1.1. Therefore if you like trace listeners in ASP.NET 2.0 but have some ASP.NET 1.1 … Continue reading

Posted in ASP.NET | Leave a comment

ASP.NET 2.0 Trace Listeners

I have been spending a lot of time exploring Visual Studio’s debugging options because I deal with a lot of large projects and web applications that require me to search through thousands of lines of code. Web applications are especially … Continue reading

Posted in ASP.NET | Leave a comment

ASP.NET Mastery – Expanding My ASP.NET Expertise

It can take a long time to learn a programming language. After the initial period of study during which you learn the language syntax, there is a long period of learning how to do various useful tasks. For a programming … Continue reading

Posted in ASP.NET | Leave a comment

ASP.NET Cryptography

For the past two days I have been working on encrypting data using ASP.NET’s built-in cryptography classes. I experimented with TripleDES and Rijndael, also known as the Advanced Encryption Standard (AES). Rijndael is accepted as a government standard for data … Continue reading

Posted in ASP.NET | Leave a comment