• o2: Paying more than you intended

    August 30, 2009

    I was reading the register recently, it had said that under new EU law roaming now had capped prices. I may have misread it, I can’t find the article, but I believed it said that data roaming charges within the EU are also capped at 1 euro per MB. As someone who has been bitten [...]

    • Share/Bookmark
  • Calendar Extender arrows in IE8 bug

    August 25, 2009

    .ajax__calendar_title {width:150px; margin:auto; padding:3px;} Taken from here: http://forums.asp.net/p/1395899/3000757.aspx If you are finding that you can’t click on the arrows on the Calendar Extender in IE 8 try using the following css. .ajax__calendar_title{width:150px; margin:auto; padding:3px;} It stops the calendar title from extending over the arrows.

    • Share/Bookmark
  • jQuery Grid Plugin (JqGrid) with ASP.Net Web Forms

    August 24, 2009

    Get JqGrid here: http://www.trirand.com/blog/ So far I’ve seen two implementations of ASP.Net wrapper on JqGrid, one involves a httphandler and the other involves using a web service. Both add extra work onto the gridview/datasource pattern. Instead I had the JqGrid use a Callback Event Reference (Page.ClientScript.GetCallbackEventReference()) with async (a parameter) set to true, this allowed [...]

    • Share/Bookmark
  • Call MethodInfo.Invoke with an out parameter

    August 21, 2009

    Taken from http://www.galcho.com/Blog/P… Here is how to call a method with an out parameter using MethodInfo.Invoke, in this case the out parameter is the last one (int). int parNum = 0; string parText = “99″; object[] methodParms = new object[] { parText, parNum }; MethodInfo methInfo = parNum.GetType().GetMethod(“TryParse”, new Type[] { typeof(string), typeof(int).MakeByRefType() }); methInfo.Invoke(null, [...]

    • Share/Bookmark
  • Can't Register Javascript for Invisible Control

    August 19, 2009

    I was writing an ASP.Net Dialog Control and I overwrote the Visible property to mean does the Dialog Control get displayed on the page initally, this defaulted to false. Later on I discovered that I couldn’t seem to register any javascript from the control. Turns out that it wasn’t being registered because of the lack [...]

    • Share/Bookmark
  • How to (Successfully) Install Cisco VPN Client on Windows 7

    August 17, 2009

    I’ve been having trouble connecting to h365 using the cisco VPN client, found the solution here:  http://weblogs.asp.net/bhouse/archive/2009/01/15/how-to-successfully-install-cisco-vpn-client-on-windows-7.aspx If you do not follow these instructions when installing the Cisco VPN Client on Windows 7, you will probably end up in an endless blue screen / reboot cycle! Uninstall any previous version of Cisco VPN client that [...]

    • Share/Bookmark
  • Handling Relative Paths and debug mode with Jquery in ASP.Net Web Forms

    August 12, 2009

    I had a problem where I wanted to use the intellisense version of JQuery when I am writing the code, the normal version when I debug it and the minified when it actually hits production. I also wanted all this done on my master page so the path to the js file had to be [...]

    • Share/Bookmark
 
Powered by Wordpress and MySQL. Theme by Shlomi Noach, openark.org