Posts under Tag: ASP.NET 2.0
Things to do with Facebook

So it’s been a while since I wrote but it’s partially because of stuff I’ve been doing with Facebook. That and I’m lazy. I’ve worked on teams that have released 3 applications and in the process of finishing 1 at work right now. Along with those, I’ve personally released 1 and have 2 that I have in [...]

By Justin with 2 comments
UPDATE – 2 Streamy Invites Available

As an update to my post a couple of days ago; I have 2 Streamy invites to give away. Here are the rules:
Tell me in 50 words or less why I should give “You” an invite and not anyone else who is requesting. So to enter, enter a comment to this story (or the original) and tell me why [...]

By Justin with 5 comments
Failed Debugging with IIS7

Yesterday I ran into an issue when I was debugging a web application that I was building. It was debugging but as soon as I installed the “Not So” RAD Controls on my machine and restarted Visual Studio, I was lucky enough to receive this error every time I wanted to debug and step through my application:
Debugging Failed Because [...]

By Justin with 0 comments
Online Digg Top Whatever Lists

So today I’m looking at Digg and I see an article for 100 Essential Resources for Web Developers and I check it out because I am a web developer and these things interest me. I click the link and see quite a few links for cool resources. One thing glares out at me and that there are barely [...]

By Justin with 0 comments
User Roles in ASP.NET 2.0

So today I was working on a project where I needed to allow for certain users to access a site but no one else. Seems simple enough but logic goes out the window with this.
I had this which made sense to me. Deny everyone first, then add the roles that I wanted to have access:
<system.web>   <authorization>      <deny users=”*” />      <allow roles=”Role 1″ />      <allow [...]

By Justin with 1 comment