On the road again...

The life of a .NET commuter.

Browse by Tags

All Tags » VB.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...
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...
Dynamic Code Compliation
My day job is working in the IT department for a school district. It's an environment where I need to automate a bunch of tasks, and the parameters of the tasks frequently change. I currently have the system set up so that it runs the tasks through a...
More Posts