User Ian Quigley - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T06:56:53Zhttp://stackoverflow.com/feeds/user/52458http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/734525/getting-started-with-f39Getting started with F#Ian Quigley2009-04-09T14:39:19Z2009-12-19T20:42:34Z
<p>What's a good way to get into F# programming?</p>
<p>What's a good "Hello world" example and what simple examples can show me why I want to use it over C#.</p>
<p>Also what tools do I need? I have WindowsXP, Visual Studio 2008 etc.</p>
http://stackoverflow.com/questions/641857/javascript-window-resize-event1Javascript window resize eventIan Quigley2009-03-13T08:50:23Z2009-12-05T18:50:43Z
<p>How can I hook into a browser window resize event? I see there's a jQuery way of doing it but I would prefer not to bring this into my project for just this one requirement.</p>
<p><a href="http://stackoverflow.com/questions/599288/cross-browser-window-resize-event-javascript-jquery">http://stackoverflow.com/questions/599288/cross-browser-window-resize-event-javascript-jquery</a></p>
http://stackoverflow.com/questions/686640/google-analytics-why-have-two-script-blocks7Google analytics, why have two script blocks?Ian Quigley2009-03-26T16:51:28Z2009-12-04T22:47:46Z
<p>Why does the Google Analytics script I add to my webpage need to come in two script blocks?</p>
<pre><code><script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-xxxxxxx-xx");
pageTracker._trackPageview();
} catch (err) { }
</script>
</code></pre>
http://stackoverflow.com/questions/1790997/twitter-api-lists-delete-bug/1831758#18317580Answer by Ian Quigley for Twitter API Lists (Delete) BugIan Quigley2009-12-02T09:33:53Z2009-12-02T09:33:53Z<p>I think the List API is still up in the air a bit. Give it a few weeks to settle. :)</p>
http://stackoverflow.com/questions/1820661/comparing-ipaddress-stored-as-varbinary/1820696#18206961Answer by Ian Quigley for Comparing IPAddress (stored as varbinary)Ian Quigley2009-11-30T16:00:19Z2009-11-30T16:00:19Z<p>If the data is returned as a byte array, why not reference the first byte of the array? Sounds like;</p>
<pre><code>Activity.Where(a => a.IpAddress[0] == 127);
</code></pre>
<p>might be what your looking for?</p>
<p>You could store the IP address as a hex string, where 127.0.0.1 = "7F000001" then if you want to find an IP address starting with 192.168.* you can use</p>
<pre><code>Activity.Where(a => a.IpAddress.StartsWith("C0A8"));
</code></pre>
http://stackoverflow.com/questions/1820243/how-to-test-if-methodinfo-returntype-is-type-of-system-void0How to test if MethodInfo.ReturnType is type of System.Void?Ian Quigley2009-11-30T14:47:22Z2009-11-30T15:15:00Z
<p>Using reflection to obtain a MethodInfo, I want to test if the type returned is typeof System.Void.</p>
<p>Testing if it is System.Int32 works fine</p>
<pre><code> myMethodInfo.ReturnType == typeof(System.Int32)
</code></pre>
<p>but</p>
<pre><code> myMethodInfo.ReturnType == typeof(System.Void)
</code></pre>
<p>does not compile? At present Im testing if the string representation of the name is "System.Void" which seems very wrong.</p>
http://stackoverflow.com/questions/1785368/correct-use-of-nhibernate-session/1808232#18082321Answer by Ian Quigley for Correct use of nhibernate sessionIan Quigley2009-11-27T11:35:02Z2009-11-27T11:35:02Z<p>There's a great example I've used from <a href="http://www.codeproject.com/KB/architecture/NHibernateBestPractices.aspx" rel="nofollow">NHibernate Best Practices</a>.</p>
<p>The code example uses a session per ASP.NET request.</p>
http://stackoverflow.com/questions/1807975/xmlwriter-for-html-creation-how-to-add-simple-non-pair-tags/1808018#18080180Answer by Ian Quigley for XMLWriter for HTML creation - how to add simple non-pair tags?Ian Quigley2009-11-27T10:43:44Z2009-11-27T10:48:48Z<p>HTML is not a valid XML format, as you are discoving with tags like <img ...></p>
<p>You could create <a href="http://en.wikipedia.org/wiki/XHTML" rel="nofollow">XHTML</a>, which is XML compliant (specify this in your <a href="http://en.wikipedia.org/wiki/Doctype" rel="nofollow">DOCTYPE</a>)</p>
<p>In XHTML single tags are writen like this <br /> for example</p>
<pre><code> HTML: <img src="..">
XHTML: <img src=".." />
</code></pre>
<p>This link might be helpful <a href="http://www.w3schools.com/XHTML/xhtml%5Fhtml.asp" rel="nofollow">XHTML vs HTML</a></p>
<p>Whitespace layout is nice for humans to read, but makes no difference to how the browser renders the Xhtml. In fact stripping unnecessary whitespace will produce slightly smaller files.</p>
http://stackoverflow.com/questions/1804474/div-scroll-to-in-javascript/1804481#18044812Answer by Ian Quigley for div scroll to in javascriptIan Quigley2009-11-26T15:54:34Z2009-11-26T15:54:34Z<p>You could set the Window Location to include the # anchor, and the browser will scroll to it.</p>
<pre><code>Window.Location = "http://yourSite.com/YourPage.html#SomeName";
</code></pre>
http://stackoverflow.com/questions/1803831/is-it-possible-to-clone-a-valuetype5Is it possible to clone a ValueType?Ian Quigley2009-11-26T14:01:32Z2009-11-26T15:04:02Z
<p>Is it possible to clone an object, when it's known to be a boxed ValueType, without writing type specific clone code?</p>
<p>Some code for reference</p>
<pre><code>List<ValueType> values = new List<ValueType> {3, DateTime.Now, 23.4M};
DuplicateLastItem(values);
</code></pre>
<p>The partical issue I have is with a value stack based virtual instruction machine. (And Im too lazy to write typeof(int) typeof(DateTime)....)</p>
<p><strong>update</strong> I think I confused myself (and a few other people). The working solution I have is;</p>
<pre><code>List<ValueType> values = new List<ValueType> { 3, DateTime.Now, 23.4M };
// Clone
values.Add(values[values.Count() - 1]);
// Overwrite original
values[2] = 'p';
foreach (ValueType val in values)
Console.WriteLine(val.ToString());
</code></pre>
http://stackoverflow.com/questions/1796347/how-can-i-give-transparency-effect-in-css/1796369#17963692Answer by Ian Quigley for How can i give transparency effect in CSS ?Ian Quigley2009-11-25T11:30:59Z2009-11-25T11:30:59Z<p>The problem with transparency settings in CSS, is that content/text is also semi-transparent, which makes for difficult reading.</p>
<p>A good "cheat" is to use a semi-transparent PNG as a background image for the div/cell. See <a href="http://blog.twipler.com" rel="nofollow">http://blog.twipler.com</a> for an example and an image from <a href="http://blog.twipler.com/twipler/siteimages/white-alpha-thick.png" rel="nofollow">http://blog.twipler.com/twipler/siteimages/white-alpha-thick.png</a></p>
http://stackoverflow.com/questions/1795861/pick-x-points-on-a-circle-which-are-on-screen-in-c/1795899#17958991Answer by Ian Quigley for Pick X points on a circle which are on screen in C#Ian Quigley2009-11-25T10:06:48Z2009-11-25T11:18:25Z<p>A simple way of "projecting" a point (X1, Y1) along a trajectory/orientation for a distance to X2, Y2 you can use the following;</p>
<pre><code> X2 = X1 + (int)(Math.Sin(orientation) * distance);
Y2 = Y1 + (int)(Math.Cos(orientation) * distance);
</code></pre>
<p>Where orientation is a radian double value. You may want to round the result since (int) is a brutal way to convert to int.</p>
<p>If you want to pick a point X/Y that is atleast distance d from point pX, pY then you know that the hypotenuse ( SquareRoot ( (X-pX)^2 + (Y-pY)^2 ) is less than d^2.</p>
<p>Is X/Y less than d from pX/pY?</p>
<pre><code>bool isTooClose = ( ((X - pY)*(X - pY)) + ((Y - pY)*(Y - pY)) < (d*d));
</code></pre>
<p>If you know the screen size, then just check the boundaries.</p>
<pre><code>bool isOnScreen = ( (pY > 0) && (pX > 0) && (pX < Screen.Width) && (pY < Screen.Height));
</code></pre>
<p>If you want to know that a circle is completely on screen, use the above isOnScreen and subtract/add the radius of the circle to the boundary. For example</p>
<pre><code>bool isCircleOnScreen = ( (pY > r) && (pX > r) && (pX < (Screen.Width - r)) && (pY < (Screen.Height - r)));
</code></pre>
<p>To pick a point (X2, Y2) on a circle you can use the formula at the top.</p>
http://stackoverflow.com/questions/1192785/book-on-net-serialization/1757086#17570860Answer by Ian Quigley for Book on .Net Serialization?Ian Quigley2009-11-18T16:08:29Z2009-11-18T16:08:29Z<p>Have you considered "Pro .NET 2.0 XML", by Bipin Joshi?</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/1590598253" rel="nofollow"><img src="http://ecx.images-amazon.com/images/I/41SMA4j5eiL._BO2,204,203,200_PIsitb-sticker-arrow-click,TopRight,35,-76_AA240_SH20_OU02_.jpg" /></a></p>
http://stackoverflow.com/questions/431119/on-your-very-first-program-which-construct-hooked-you-on-programming/1748405#17484051Answer by Ian Quigley for On your very first program, which construct hooked you on programming?Ian Quigley2009-11-17T12:02:40Z2009-11-17T12:02:40Z<p>Lambda expressions</p>
<p>Been programming my nearly my whole life, but even now find excitement in new things like Lamdba expressions.</p>
<pre><code> MyList.Any(p => p.IsCurrent)
</code></pre>
<p>Hmm.. love it.</p>
http://stackoverflow.com/questions/1730280/accessing-asp-net-development-server-from-another-pc-on-the-network/1730368#17303681Answer by Ian Quigley for Accessing ASP.NET Development Server from another pc on the networkIan Quigley2009-11-13T16:36:12Z2009-11-13T16:36:12Z<p>Open a command prompt and type; "ipconfig" this will give you your machines IP address.</p>
<p>If you disable your firewall (for the asp.net dev port at least) you should be able to type into the virtual PC's browser <a href="http://192.168.1.3:3243/default.aspx" rel="nofollow">http://192.168.1.3:3243/default.aspx</a></p>
http://stackoverflow.com/questions/1728698/access-query-to-filter-and-combine-count/1728719#17287191Answer by Ian Quigley for access query to filter and combine countIan Quigley2009-11-13T11:38:28Z2009-11-13T11:42:06Z<p>Maybe....</p>
<pre><code>SELECT a.num, a.count + b.count
FROM tableA a
JOIN tableB b on b.num = a.num
WHERE a.count >= 6
AND b.count >= 6
</code></pre>
<p>this will include numbers which are in both A and B. To include numbers with count >= 6 that are in one table and not the other you'll have to add a Join and a "isnull" for the a.count and b.count values. ie; isnull(a.count,0) + isnull(b.count,0)</p>
http://stackoverflow.com/questions/1698175/what-is-the-json-net-equivilant-of-xmls-xpath-selectnodes-selectsinglenode3What is the JSON.NET equivilant of XML's XPath, SelectNodes, SelectSingleNode?Ian Quigley2009-11-08T22:37:38Z2009-11-12T11:57:01Z
<p>At present the structure of my code uses <code>XmlDocument</code> to load Xml and then <code>SelectNodes</code> to iterate through a list of repeating items. For each elements Im using <code>XmlNode.SelectSingleNode</code> to pick out field elements.</p>
<p>I now want to use JSON.NET to achieve the same results with documents delivered to me as Json. The answer can be something other than Json.net, as long as it's C# intergratable.</p>
http://stackoverflow.com/questions/1707327/domains-foreward-slash/1707346#17073460Answer by Ian Quigley for Domains & Foreward SlashIan Quigley2009-11-10T11:38:09Z2009-11-10T11:44:18Z<p>Use Internet Info Services (IIS) and create a Virtual Directory under the domain.</p>
<p>Open IIS, go to your domain "site-a.com", right click, select "New Virtual Directory" call it, "sub1" and point it at the folder on the machine with "site-a.com\sub1" in it. See: <a href="http://support.microsoft.com/kb/172138" rel="nofollow">Create Virtual Directory</a> </p>
<p>Likewise, you can create a site called "sub1.site-a.com" and in Properties, have it respond to requests and again point it at the folder on the machine with "site-a.com\sub1" in it. See: <a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/77e6f873-a30e-4c6b-8ab6-26aaa6c8754e.mspx?mfr=true" rel="nofollow">Naming Web Sites</a></p>
http://stackoverflow.com/questions/1700443/detecting-forged-images-with-c/1700457#17004571Answer by Ian Quigley for Detecting forged images with C#?Ian Quigley2009-11-09T11:28:54Z2009-11-09T11:28:54Z<p>Good question, but depends on how much code you want to write. What if I mirror/flip an image, cut&paste with-in images. When you solve this problem, you've cracked most CAPTCHA too?</p>
<p>If you have alot of horsepower and programming man-hours you might want to look at Forier Transformations and Historgams to find matches. This would identify flip/mirror copy/paste. </p>
<p>Then create lots of fragments of tests, like unit tests(?) for things like "can this bit of image be found in the source" "can this bit when hue-rotated be found" etc etc.</p>
<p>Very open ended problem</p>
http://stackoverflow.com/questions/1633220/nhibernate-order-by-n-with-sql-server0nHibernate order by N with SQL ServerIan Quigley2009-10-27T19:45:02Z2009-10-27T20:03:00Z
<p>With a SQL Query I can <code>order by</code> N, where N is a column index. For example</p>
<pre><code> SELECT name, salary FROM employee ORDER BY 2;
</code></pre>
<p>How can I do this with nHibernate?</p>
http://stackoverflow.com/questions/1543882/is-it-possible-to-enforce-read-only-behaviour-with-sqlcommand1Is it possible to enforce Read Only behaviour with SqlCommand?Ian Quigley2009-10-09T13:46:16Z2009-10-27T19:56:37Z
<p>Is it possible to enforce read only permissions using the <code>System.Data.SqlClient</code> code accessing a Sql Server database?</p>
<p>I want to allow trusted users to write their own SELECT statements, in a web site.</p>
<p>NO Im not trolling here! Obvious solutions are to create a readonly user in the database, and use those credentials in the connection string, and surely only an idiot accepts a SQL statement in a webpage. This is a user deployment issue, I don't trust someone else to set that up correctly and don't want to write code to check that the readonly connection string is readonly.</p>
<p>One solution would be to parse the SQL and verify that it is a readonly command, or to do something similar. What I want to do is to do something like;</p>
<pre><code>SqlConnection conn = new SqlConnection(myConnectionString, Flags.Readonly)
</code></pre>
<p><strong>update</strong>
Given a connection string with SA priviledges, "create user blah with password=xxx" "use my-db" "create login blah" "grant select on mytable to blah". Then make a new connection string.</p>
http://stackoverflow.com/questions/1543164/software-licensing-question-using-progresql-or-mysql/1543175#15431751Answer by Ian Quigley for Software licensing question using ProgreSQL or MySQLIan Quigley2009-10-09T11:09:46Z2009-10-09T11:09:46Z<p>You can use any GPL licensed software to create an in-house product.</p>
http://stackoverflow.com/questions/1492878/how-to-encrypt-query-strings-in-aspx-net/1492950#14929501Answer by Ian Quigley for How to encrypt query strings in aspx.net?Ian Quigley2009-09-29T14:35:20Z2009-09-29T14:35:20Z<p>If you trying to hide your product Id's and things like that, then why not just use <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.sha1.aspx" rel="nofollow">Encryption</a>? </p>
<p>I guess what you want to do, is to stop people editing the query string to get different results. The simple way to do this, is to add a Hash of the query string to the query string, and have some base-page functionality check that the hash is correct for the request, identifing tampered query strings.</p>
<p>See <a href="http://stackoverflow.com/questions/1061134/prevent-query-string-manipulation-by-adding-a-hash">Prevent query string manipulation by adding a hash?</a></p>
http://stackoverflow.com/questions/1492587/c-code-only-gives-expected-results-on-step-through/1492608#14926084Answer by Ian Quigley for C# code only gives expected results on step through?Ian Quigley2009-09-29T13:36:00Z2009-09-29T13:36:00Z<p>When you create "Random rnd = new Random();" it is seeded by the current time. When you debug your code (which takes time) it will be seeded differently each time.</p>
<p>Create 1 instance of Random, and reference that everywhere.</p>
http://stackoverflow.com/questions/1445634/compress-about-1000-bytes-of-text-for-a-querystring2Compress about 1000 bytes of text for a QueryStringIan Quigley2009-09-18T16:34:01Z2009-09-18T18:56:25Z
<p>I want to create a mechanism (in C#) where text from a QueryString is displayed on a website. </p>
<p>For example, in C# I might literally do;</p>
<pre><code>public void Page_Load(blah)
{
litSomething.text = Reques.QueryString["msg"];
}
</code></pre>
<p>Assume that the message is written in English (allowing UTF8 would be nice), and is no longer than say 1000 characters. I want to compress this text down as much as possible and still be able to place it in a QueryString.</p>
<p>We can predefine as many dictionary terms as we like (well with-in reason?). The server side code will encode and decode the messages.</p>
<p>(Obviously I'll be adding in all the usual XSS protection, HttpUtitlity.HtmlEncode etc type stuff. Also pointers to free dictionary sources would be good!)</p>
<p>Any tips, adivce, source code? This isn't my homework before you ask! </p>
<p>Update<br />
Thanks for the suggestions. I want to make this a GET, so people IM/email URLs. Im thinking along the lines of bit.ly which would also be a cheat in itself. Wanted this to be a generic "short text compression" question though.</p>
http://stackoverflow.com/questions/1345978/whats-the-difference-advantages-between-icriteria-and-icriterion-in-nhibernate0What's the difference/advantages between ICriteria and ICriterion in nHibernate?Ian Quigley2009-08-28T09:35:02Z2009-08-28T10:13:53Z
<p>Bit of a newbie question as Im getting started with nHibernate. </p>
<p>What's the difference between <code>NHibernate.Criterion.ICriterion</code> and <code>NHibernate.ICriteria</code> classes and which should I use for simple "<code>where field=value</code>" type filtering?</p>
http://stackoverflow.com/questions/1278668/how-to-set-default-homepage-for-subdomain-on-iis7/1278784#12787840Answer by Ian Quigley for How to set default homepage for subdomain on iis7?Ian Quigley2009-08-14T16:16:44Z2009-08-14T16:16:44Z<p>In IIS, default site, properties, web site, advanced, you should see a list like;</p>
<pre><code>default - 80
</code></pre>
<p>then "Add" in these two rows</p>
<pre><code> (all unassigned) : 80 : www.mydomain.com
(all unassigned) : 80 : sub.mydomain.com
</code></pre>
<p>then default.aspx will go to the same page in both sites. ie. sub.mydomain.com is the same as www.mydomain.com.</p>
<p>However, if you want sub.mydomain.com to be a different website, then remove it from that list above and from IIS, Websites -> New Website ... yadda yadda yadda, then add in sub.mydomain.com as you did above.</p>
http://stackoverflow.com/questions/1259524/asp-net-ms-sql-server-best-source-control/1259537#12595371Answer by Ian Quigley for asp.net + MS SQL Server: Best Source ControlIan Quigley2009-08-11T10:29:43Z2009-08-11T10:29:43Z<p>Alot of people use <a href="http://subversion.tigris.org/" rel="nofollow">Subversion</a>. Place all your SQL into text files and place them in the repository.</p>
http://stackoverflow.com/questions/1245531/doubles-across-different-cpu-architectures/1245591#12455911Answer by Ian Quigley for Double(s) across different cpu architectures?Ian Quigley2009-08-07T15:56:03Z2009-08-07T15:56:03Z<p>You're essentially asking "Can I transfer binary data between systems seamlessly". The answer would be Yes, as long as the two systems agree to the same format. If you know which CPU's your expecting, then check their IEEE standards complience and you should be in business.</p>
http://stackoverflow.com/questions/1232305/informix-grant-select-on-all-tables0Informix, grant select on all tablesIan Quigley2009-08-05T10:08:37Z2009-08-05T15:18:53Z
<p>With Informix I can <code>grant select</code> on a table like;</p>
<pre><code>grant select on 'dba'.mytable to someuser as dba;
</code></pre>
<p>How can I perform this on all tables in the database?</p>
http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/245068#245068Comment by Ian Quigley on What's the difference between JavaScript and Java?Ian Quigley2009-12-14T10:28:48Z2009-12-14T10:28:48ZDupe <a href="http://stackoverflow.com/questions/58640/great-programming-quotes/58693#58693" rel="nofollow" title="great programming quotes">stackoverflow.com/questions/58640/…</a>http://stackoverflow.com/questions/1825831/better-way-of-searching-through-lists-than-using-foreachComment by Ian Quigley on Better way of searching through lists than using foreachIan Quigley2009-12-01T12:20:03Z2009-12-01T12:20:03Zthe answer will be Linqhttp://stackoverflow.com/questions/1820661/comparing-ipaddress-stored-as-varbinary/1821016#1821016Comment by Ian Quigley on Comparing IPAddress (stored as varbinary)Ian Quigley2009-11-30T22:48:47Z2009-11-30T22:48:47ZGood answer. So you're saying search for greater than/equal (127 * 0x100000) and less than (127 * 0x100000)-1.http://stackoverflow.com/questions/1820243/how-to-test-if-methodinfo-returntype-is-type-of-system-void/1820256#1820256Comment by Ian Quigley on How to test if MethodInfo.ReturnType is type of System.Void?Ian Quigley2009-11-30T15:03:22Z2009-11-30T15:03:22ZYep, I fail. Would have accepted RTFM answer also :)http://stackoverflow.com/questions/1820243/how-to-test-if-methodinfo-returntype-is-type-of-system-void/1820300#1820300Comment by Ian Quigley on How to test if MethodInfo.ReturnType is type of System.Void?Ian Quigley2009-11-30T15:01:00Z2009-11-30T15:01:00ZIm such an idiot. The error message says "use typeof(void)".http://stackoverflow.com/questions/1820243/how-to-test-if-methodinfo-returntype-is-type-of-system-voidComment by Ian Quigley on How to test if MethodInfo.ReturnType is type of System.Void?Ian Quigley2009-11-30T15:00:07Z2009-11-30T15:00:07ZCompiler says "System.Void cannot be used from C# -- use typeof(void) to get the void type". Ah, just read the error. DOH!http://stackoverflow.com/questions/1807975/xmlwriter-for-html-creation-how-to-add-simple-non-pair-tags/1808019#1808019Comment by Ian Quigley on XMLWriter for HTML creation - how to add simple non-pair tags?Ian Quigley2009-11-27T10:47:14Z2009-11-27T10:47:14ZAlso indent only effects the text output, which has no effect on how the xhtml is rendered.http://stackoverflow.com/questions/1807975/xmlwriter-for-html-creation-how-to-add-simple-non-pair-tags/1808019#1808019Comment by Ian Quigley on XMLWriter for HTML creation - how to add simple non-pair tags?Ian Quigley2009-11-27T10:46:02Z2009-11-27T10:46:02ZThis will write <b /> which works for Xhtml but and only "by co-incidence" in htmlhttp://stackoverflow.com/questions/1804497/should-i-restart-my-computer-after-blue-screen-of-deathComment by Ian Quigley on Should I restart my computer after Blue Screen of Death?Ian Quigley2009-11-26T15:58:53Z2009-11-26T15:58:53ZYour computer is probably thirsty and needs a drink of water? Try pouring some into one of the vents?http://stackoverflow.com/questions/1804208/how-do-you-work-out-the-iis-virtual-path-for-an-application/1804383#1804383Comment by Ian Quigley on How do you work out the IIS Virtual Path for an application?Ian Quigley2009-11-26T15:43:38Z2009-11-26T15:43:38Z+1 as is often the way, you work it out youself in the end :)http://stackoverflow.com/questions/1804208/how-do-you-work-out-the-iis-virtual-path-for-an-applicationComment by Ian Quigley on How do you work out the IIS Virtual Path for an application?Ian Quigley2009-11-26T15:35:53Z2009-11-26T15:35:53ZSo "Virtual Path" is not "Virtual Directory"? Im confused and hiding behind the sofa.http://stackoverflow.com/questions/1804311/how-to-check-if-an-integer-is-power-of-3/1804342#1804342Comment by Ian Quigley on How to check if an integer is power of 3?Ian Quigley2009-11-26T15:34:14Z2009-11-26T15:34:14Z15 is not a power of 3 :)http://stackoverflow.com/questions/1804208/how-do-you-work-out-the-iis-virtual-path-for-an-application/1804219#1804219Comment by Ian Quigley on How do you work out the IIS Virtual Path for an application?Ian Quigley2009-11-26T15:20:20Z2009-11-26T15:20:20ZAh, so looks like "Auth" from the screen shothttp://stackoverflow.com/questions/1803831/is-it-possible-to-clone-a-valuetype/1803962#1803962Comment by Ian Quigley on Is it possible to clone a ValueType?Ian Quigley2009-11-26T15:07:58Z2009-11-26T15:07:58ZIm not sure about the guts of the CLR but the solution I have works. As you've said in the comments to another answer, you've probably caught the CLR doing something "clever"http://stackoverflow.com/questions/1803831/is-it-possible-to-clone-a-valuetype/1803922#1803922Comment by Ian Quigley on Is it possible to clone a ValueType?Ian Quigley2009-11-26T14:37:25Z2009-11-26T14:37:25Z+1 I've tried this and it certainly looks like it works. Thx.