Posts
All the articles I've posted.
Have GridView Highlight Last Inserted Record in ASP.NET 2.0
Published: at 08:00 PMA question that frequently comes up in the asp.net forums is how to have a gridview show the the last record added highlighted. This articles gives a technique for doing this. It only works with SqlServer but could could be modified for other databases.
Encode and Display HTML Securely in ASP.NET 2.0
Published: at 08:00 PM<p>I recently published an article at DotNetSlackers on how to securely collect and display HTML. For those that have not seen it, the URL is:</p> <br /> <a href="http://dotnetslackers.com/articles/aspnet/Encode_and_Display_HTML_Securely_in_ASP_NET_2_0.aspx">http://dotnetslackers.com/articles/...</a>
Dev Connections Las Vegas 2006, Day 0 - The Keynote. RTM!
Published: at 08:00 PMIn the first event of Dev Connections, Microsoft announced office 2007 RTM'd and Atlas for ASP.NET 2.0 Beta 2. Also some good presentations including one using BI with sharepoint and excel.
Implementing Simple Cache for CodeSmith and NetTiers (ASP.NET 2.0)
Published: at 08:00 PM<p>In this article, I will show a simple way to implement Cache for a GetData type call in the SqlClient layer of the generated code. I won't go through all the details of getting to this point but will show the code and briefly explain how it works. I'm new to CodeSmith so I'm sure there is a better way to solve this problem, but for now, this is one technique that works.</p>
Improved Fast Access to Small Lists On ASPX Pages
Published: at 08:00 PMThe article below has a minor improvement to the previous article listed on this web site. Specifically, the previous article used the DropDownList as a mechanism to actually retrieve the data for the purposes of storing it in a local Dictionary. This article simply calls the ObjectDataSource directly to retrieve an IEnumerable type and iterates over that. Below is article with the updates. (Original Article is: <a href="/2006/08/30/smalllistaccess/">https://peterkellner.net/2006/08/30/smalllistaccess/</a>)