Virtual Paths, LinkButtons and A Hrefs
Thursday, October 9th, 2008When you should consider replacing LinkButtons with good ol’ tags, and how you can use ‘em with a little bit of .NET capability.
LINQ, Stored Procedures and Multiple Recordsets
Thursday, May 15th, 2008Update: This post has a follow up here: LINQ, Stored Procedures and Multiple Recordsets: How-To
I wanted to use a LINQ with a stored procedure that would return multiple recordsets, like this:
CREATE PROCEDURE spReturnMultiple
AS
–first set
SELECT value1 FROM table1
–second set
SELECT t1.value1, t2.value2
FROM [...]
ASP .NET Membership: Where’s the UserID?
Friday, April 25th, 2008I couldn’t figure this out intuitively, but good news: there is a way to get it from the MembershipUser class.
They don’t call it UserID (duh) but ProviderUserKey
dim user as MembershipUser = Membership.GetUser()
dim userGUID as GUID = user.ProviderUserKey
dim userID as String = user.ProviderUserKey.toString
Click on pen to var showHover=true;
LINQ here, LINQ there, LINQ everywhere
Tuesday, April 22nd, 2008According to DA GURU (that’s Scott Guthrie), on his article LINQ to SQL (Part 5 – Binding UI using the ASP:LinqDataSource Control)
We will also take advantage of the built-in paging/sorting support within LINQ to SQL to ensure that features like the product listing paging/sorting are performed not in the middle-tier, but rather in the [...]
ASP .Net says: Look, Ma, I’m a Javascript!
Saturday, April 19th, 2008Here’s was my problem yesterday, in a cool scripted form:
Mission> Your mission, should you choose to accept, is to allow third party sites to grab from this system you are developing and display our content. These undisclosed third party sites may be in ASP .Net, ASP, PHP, or even… [ominous pause] static HTML. You have [...]
Use the Highlighter