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 [...]
.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.
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 me to [...]
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, methodParms);
parNum = (int)methodParms[1];
Console.WriteLine(“Parsed number:{0}”, parNum);
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 of [...]
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 you may [...]
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 relative [...]