This is an old topic, but I subscribed to a couple new podcasts the other day and it came to mind again. I don’t understand why podcasts don’t have embedded URLs. MP3’s have a header section where you can store all kinds of data that is never played. It’s where ID3 tags are stored that …
Author Archives: jpbroome
Telerik RadComboBox: Readonly
Had to implement a readonly mode for a radcombobox, and learned read-only isn’t supported on this control. Here’s how I simulated it (Note: The items are loaded in code-behind, but that’s irrelevant to this behavior) : <script type=”text/javascript”> var n; n = $find(“<%= rcbMyControl.ClientID %>”); n.readOnly = true; n.set_changeText(false); // Prevent keyboard nav from changing …
Debugging a .NET Site on IIS Express, Not Working [Fixed]
This was driving me nuts. I have a site with mixed code, .asp (vbscript) and .Net (c#) and I wanted to be able to debug the .Net pages to see what’s going on when intended functionality fails. So I ran a fresh build, set breakpoint in my code, started up IIS Express to run my …
Continue reading “Debugging a .NET Site on IIS Express, Not Working [Fixed]”