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 …