Late last year, I wrote about Streaming Media with my Sony Blu-ray Disc Player. I am still digging the Blu-ray player setup but guess what showed up in the mail yesterday? That’s right! A free Netflix disc which now let’s me instantly watch TV episodes and movies via my Wii console. I popped the disc [...]
The jQuery Treeview Plugin provides collapse all, expand all and toggle all support with very little effort on your part. Simply add a treecontrol with three links, and the treeview, to your page… <div id="treecontrol"> <a title="Collapse the entire tree below" href="#"><img src="../images/minus.gif" /> Collapse All</a> <a title="Expand the entire tree below" href="#"><img src="../images/plus.gif" /> [...]
Continue reading about jQuery Treeview – Expand and Collapse All Without the TreeControl
In this episode, Noah and I explain how to use Web Deployment Projects to deploy your web application. This screencast will get you up and running, but in a future screencast, we discuss more advanced topics like excluding files, swapping out the right config files per environment, and alternate solution configurations. This screencast (and the [...]
In this screencast, Noah and I show you how to quickly get started with the ASP.NET Membership Provider. We’ll take you through basic features and setup and walk you through membership table creation with the ASP.NET SQL Server Wizard. I’ve written about the ASP.NET Membership Provider and setup before. If you missed the post, this [...]
I’ve been using the T4Toolbox to help generate my ASP.NET MVC models and scaffolding for a while now. Another developer tried using my generator project last week and ran into troubles due to a breaking change around the RenderCore() and TransformText() methods in support for VS 2010. If you upgraded to the latest version of [...]
I wrote about implementing a custom profile provider inside of your ASP.NET MVC application yesterday. If you haven’t read the article, don’t sweat it. Most of the stuff I write is rubbish anyway. Since you have joined me today, though, I might as well offer up a little tip: you can run into trouble, like [...]
Continue reading about Custom Profile Provider with Web Deployment Project
It’s been a long while since I last used the ASP.NET Profile provider. It’s a shame, too, because it just works with very little development effort: Membership tables installed? Check. Profile enabled in web.config? Check. SqlProfileProvider connection string set? Check. Profile properties defined in said web.config file? Check. Write code to set value, read value, [...]