Archive for the 'ASP.Net' Category
Friday, November 14th, 2008
In my previous post in this series, I determined that I had to start looking into how MVC handles access control before moving forward. I came up with a list of functional specifications that I needed to write proof of concept code right away to learn how ASP.Net MVC helps (or hinders) me in implementing [...]
Posted in .Net, ASP.Net, MVC, myjoglog.net, Projects, Web | Comments Off
Friday, November 14th, 2008
Creating User Stories Now that I’ve got a feel for how MVC handles the mechanics of a data-driven application, I’ve got to take a step back and think about how users are going to use the application. For a start, here’s what I came up with: The site will allow anyone (both anonymous and logged [...]
Posted in .Net, ASP.Net, MVC, myjoglog.net, Projects, Web | Comments Off
Thursday, November 6th, 2008
So, if you read my first post in this series, you know I’m creating a MVC web application to log and share workouts. Picking up where I left off, I’ve got to complete the life cycle of a workout (insert, select, update, and delete). Completing the Life Cycle of a Workout In the first post [...]
Posted in .Net, ASP.Net, MVC, myjoglog.net, Web | Comments Off
Monday, November 3rd, 2008
I’ve been very excited about ASP.Net MVC ever since I started hearing about its emergence in various blogs and podcasts. MVC basically addresses all of the issues I have with developing ASP.Net web sites (viewstate, postbacks, testing, etc), and I’ve eagerly awaiting a release its release. Well, now that ASP.Net MVC is in it’s first [...]
Posted in .Net, ASP.Net, MVC, myjoglog.net, Projects, Web | Comments Off
Sunday, June 11th, 2006
The Microsoft ASP.Net Developor’s center has a series of web casts for beginers that covers features that are new or changed in ASP.Net 2.0 like data access, membership providers, master pages. For more advanced and indepth coverage of these and other topics, check out the Essential ASP.Net series.
Posted in .Net, ASP.Net, Web | No Comments »
Tuesday, March 14th, 2006
Here’s a great DevX tutorial on Writing A Custom Membership Provider for your ASP.NET 2.0 Web Site.
Posted in .Net, ASP.Net, Web | No Comments »
Tuesday, February 28th, 2006
This Microsoft KB article offers some work arounds.
Posted in .Net, ASP.Net | No Comments »
Tuesday, September 27th, 2005
I keep forgetting these and not being able to find them in the MSDN library without going through pages of locailzation jargon, so I’ve decided to reprint this list that I found on vb-helper.com. d – Short date %d – Day number M?d – Month and day number dd – Day number, two digits ddd [...]
Posted in .Net, ASP.Net | No Comments »
Friday, September 2nd, 2005
When I think of sources for information on application architecture, I rarely think MSDN Library, but I did find the article on Designing Data Tier Components and Passing Data Through Tiers for .Net applications to be full of useful information and design considerations.
Posted in .Net, ASP.Net, Best Practices, Web | No Comments »
Wednesday, August 31st, 2005
My client needs to be able to restrict page content based on the client machine name on their intranet site. I knew that you could get the IP address from the REMOTE_HOST HTTP header, and some exploration of the System.Net namespace revealed that you can use the System.Net.Dns.GetHostByAddress method to perform a reverse DNS look [...]
Posted in .Net, ASP.Net, Web | No Comments »