On the road again...

The life of a .NET commuter.

Browse by Tags

All Tags » ASP.Net (RSS)
Create HotKey combinations with jQuery
Here's a great little script that allows you to easily map hot-key combinations using the jQuery library. http://code.google.com/p/js-hotkeys/wiki/about If you haven't seen the jQuery libray yet, check it out.
Case-Sensitivity in ASP.NET (VB)
Note to self, and anyone else who cares... ViewState("ReferrerURL") is not the same as ViewState("ReferrerUrl"). Same with Cache object names. Apparently VB does *kinda* care about case sensitivity...
ASP.NET and Images on a Network Share
The school district I work for had an idea for an application. The need comes from several angles. First of all, lunch counts are all done by paper. Attendance is taken on paper, then it is sent to the Health Room, where tallies are made, and then everything...
Posted: May 16 2008, 09:58 PM by du8die | with 2 comment(s)
Filed under: , ,
app_offline.htm
This is probably old news, but if you temporarily need to take an ASP.Net Application offline, simply drop a file called app_offline.htm into the root directory of the app. This could be helpful when upgrading a live app. That way, you don't get the ugly...
Posted: Mar 13 2008, 09:53 AM by du8die | with 3 comment(s)
Filed under: , ,
Render the contents of a ReportViewer control directly to PDF.
Rendering the output of a ReportViewer control (SQL Reporting Services) directly to PDF is fairly easy. It involves simply rendering the Report Viewer output to a byte array, and then pushing it to a MemoryStream object and writing to the Output Stream...
IISRESET on Remote Machine
I posted this on my GeeksWithBlogs blog a while ago (3 years)... I've gotten a few questions about it recently, so I figured I'd post it here and see if it's helpful. Ever wondered how to reset IIS on a remote (local network) machine? Pop open the command...
Drag – Drop Interaction with jQuery
A few days ago, I posted about getting started with AJAX, Facebox and jQuery . Well, I've been doing a little more work with it, and wanted to do a quick demo of the Drag and Drop interaction that is possible with jQuery, and a little preview of how to...
Posted: Jan 25 2008, 11:08 PM by du8die | with 6 comment(s)
Filed under: , ,
jQuery, Facebox and AJAX
One frustration that I've had for the 4 years that I've been working with AJAX is how messy the front-side code can get. There's lots of JavaScript, and that can get kind of annoying. Plus, there's the design perspective of trying to find the right real...
Posted: Jan 22 2008, 03:06 PM by du8die | with 13 comment(s)
Filed under: , ,
More Posts