Browse by Tags
All Tags »
.Net General (
RSS)
I've been recently interested in tracking other people's blog posts where I may have left comments, or posts I simply wanted to track. After sitting on it a bit it seems obvious that a web monitoring application would fit the bill quite nicely. After...
Good article at SD Times titled “Out of Site, Out of a Job“ by Larry O'Brien. While it’s hard to lament the loss of the incompetent, the other type of programmer that is doomed is the developer with poor social skills ... P.S. Thanks Julie Lerman for...
I discovered a quick tip on fixing the wraparound in the checkboxlist control short of overriding the ListControl object and altering the rendering of the base control: I wrapped the text of each checkbox item inside a TableCell TD. Produces the bottom...
My home office Exchange server crashed in September and while the server has been replaced, I really don't want to re-install Exchange on it unless I absolutely have to. So I implemented a real simple approach to test HTML-based email components without...
It took less than an hour to implement captcha on my personal blog, based on the work of Chris Kunicki, BrainJar, and CMU nerds. Details, links, and code excerpts on my personal blog here .
In a few hours its off to Montreal, Canada for my 2nd (and its 2nd) DevTeach. I raved about this conference ever since I attended it last year, but to tell you the truth, I looked over the .NET session agenda and there are a LOT of the same sessions from...
I just looked over the DevTeach session schedule and it looks incredibly juicy. I LOVE DevTeach! But I was curious to see a few sessions which were the same as last year. In a Whidbey world, its nice to see some things stay the same! For instance, Tom...
I was asked to take a look at an ASP web app the other day which output a report in a popup window in the hope that I could redesign it to output multiple reports instead of just one. I really wanted to do this for the fellow who requested it, but we...
<asp:Button ID="btnSelect" Runat="server" OnCommand="btnSelect_OnCommand" /> protected void btnSelect_OnCommand(object sender, CommandEventArgs e) { string action = e.CommandArgument.ToString(); bool blnSelected; if (action == "selectall") { btnSelect...
This is an unfocused post on my last couple of days putting together a datalist with oncommand events. Do people use these a lot? There are very cool capabilities in using OnEditCommand, OnUpdateCommand, OnSelectCommand, and OnCancelCommand. There seems...
More Posts
Next page »