Dennis van der Stelt

The most votes generally drown out the best votes

Community

News

  • Meet me at PDC08

Email Notifications

I read...

I Use...

Tags

Recent Posts

Archives

Browse by Tags

All Tags » ASP.NET (RSS)
"How Do I?" Videos
When people want start learning about .NET in general or a specific subject like Silverlight or security, can be send to the "How Do I?" videos. I do this myself a lot of times, because a lot of videos aren't 60+ minutes. Just as a reminder...
Configuring an ASP.NET Membership provider instead of LocalSqlServer
On the frontpage of BloggingAbout.NET you can see who posted comments on which articles and I found a few recent comments on a rather old post by Arjen Bloemsma about the LocalSqlServer connection string and its binding to ASP.NET Membership provider...
Opening links on websites
First, let me tell you how I open my websites in Internet Explorer 7 and/or Firefox. Open link in new window SHIFT + Mouse-click Open link in new tab window CTRL + Mouse-click Open link in same window Drag link to tab Refresh post-back page without re...
WCF serving AJAX troubleshooting
I hope in the RTM you'll get more help solving your WCF Ajax problems then I currently get, because I'm getting mad from time to time. In my quest for getting things to work, I learned some stuff I wanted to share. Read: have a checklist for myself...
Astoria, data services for the web
At MIX07 I've seen a presentation by Pablo Castro from the ADO.NET team on a new project codenamed "Astoria". It's a new technology used for getting data over the web. It's very useful in Ajax scenarios where you'd like some XML or, maybe even better...
Viva Las Vegas
So I arrived... Yesterday the plane landed in Las Vegas and the first thing that I saw were... slotmachines! This is Vegas of course. I'm staying in The Venetian and the hotel is gorgeous. After publishing this, I'll start taking some pictures and publish...
MIX'07
I'll be attending MIX'07 in Las Vegas this year as well as the parallel MDEC conference for Mobile development. One of my goals for this year is to do more with ASP.NET so Alex isn't the only one with all the knowledge ;-) Some fun things are: Vegas!...
ASP.NET debugging on Vista/IIS7
For some reason, a single project I'm working on wouldn't let the debugger attach to my IIS7 on Vista. I was completely clueless on why this was happening. Great thing is, the problem is solved, it now connects. The problem remaining is, that I'm still...
Vista desktop search & starting applications as administrator
Via Tim Sneath I've learned that you can start an elevated command prompt from the Start Menu. Press ctrl-esc to pull up the start menu, type in "cmd". cmd.exe is the command prompt. When it's visible, just press ctrl-shift-enter and it'll start up with...
Visual Studio 2005 SP1 available!
And suddenly it's there... Visual Studio 2005 Team Suite SP1 (includes SP1 updates for Standard, Professional, and Team Editions of Visual Studio 2005) Visual Studio 2005 Team Foundation Server SP1 Visual Studio 2005 Express Editions SP1 Visual Studio...
Async invocation pattern
I talked to my colleague Alex Thissen recently about the changes in asynchronous invocation of ASP.NET 2.0 webservices. On the web there are a multitude of examples about the old way, but not so many on the new way. But after figuring out what the new...
IIS7 and Url Rewriting
IMPORTANT UPDATE I found out where the <module> tag belongs! :) I was running in Classic .NET AppPool, when switching to the DefaultAppPool in IIS7 I could use the <modules> section. So the new way to use HttpModules for UrlRewriting is: <...
DataBinding in ASP.NET 2.0 and the RowUpdating event
For a while now I'm trying to figure out why my method, triggered by the GridView.RowUpdating event, doesn't work as all samples say it should do. All samples of course assume you're doing everything in your .aspx page, but I have to do everything in...