User DrG - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T02:48:49Z http://stackoverflow.com/feeds/user/31765 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1605836/can-i-get-all-the-fields-in-an-item-in-sitecore 0 Can I get all the fields in an item (in Sitecore)? DrG 2009-10-22T08:43:41Z 2009-11-16T18:22:12Z <p>I'm trying to write a sql query to get all the fields in a given item in Sitecore.</p> <p>To say I am stuck is putting it mildly.</p> <p>I'm guessing I have to do some self joining on the fields table, but I'm getting myself in knots.</p> <p>Anyone have any ideas?</p> http://stackoverflow.com/questions/1618856/isapi-rewrite-rule-help-http-www-foo-com-bar-http-www-foo-com-bar-aspx 0 ISAPI Rewrite rule help (http://www.foo.com/bar --> http://www.foo.com/bar.aspx) DrG 2009-10-24T19:37:00Z 2009-10-24T20:13:48Z <p>A really easy one, but I need to get this right, and cannot afford mistakes as I need to deploy on a live server as soon as I can. </p> <pre><code>http://www.foo.com/bar --&gt; http://www.foo.com/bar.aspx http://www.foo.com/bar?q=boo --&gt; http://www.foo.com/bar.aspx?q=boo # I only want /bar to get rewritten to /bar.aspx # everything else stays as is http://www.foo.com/bar.aspx --&gt; http://www.foo.com/bar.aspx http://www.foo.com/bar.pdf --&gt; http://www.foo.com/bar.pdf </code></pre> <p>I got here, but this turns <code>bar.aspx</code> into <code>bar.aspx.aspx</code>, and that ain't good.</p> <pre><code># Helicon ISAPI_Rewrite configuration file RewriteEngine on RewriteRule (.*) $1.aspx [L] </code></pre> http://stackoverflow.com/questions/349742/how-do-you-test-your-request-querystring-variables 10 How do you test your Request.QueryString[] variables? DrG 2008-12-08T14:39:07Z 2009-10-19T19:00:00Z <p>I frequently make use of Request.QueryString[] variables.</p> <p>In my <code>Page_load</code> I often do things like:</p> <pre><code> int id = -1; if (Request.QueryString["id"] != null) { try { id = int.Parse(Request.QueryString["id"]); } catch { // deal with it } } DoSomethingSpectacularNow(id); </code></pre> <p>It all seems a bit clunky and rubbish, how do you deal with your Request.QueryString[]s?</p> http://stackoverflow.com/questions/721041/which-css-grid-system-should-i-learn 3 Which css grid system should I learn? [closed] DrG 2009-04-06T11:23:57Z 2009-09-27T20:15:40Z <h3>Duplicate</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/203069">What is the best CSS Framework and are they worth the effort?</a><br /> <a href="http://stackoverflow.com/questions/322484">Can someone Recommend a Bells and Whistles CSS framework?</a><br /> <a href="http://stackoverflow.com/questions/589184">Help me choose a CSS framework: 960 vs Blueprint vs ???</a><br /> <a href="http://stackoverflow.com/questions/639285">Best CSS Framework?</a><br /> <a href="http://stackoverflow.com/questions/647853">How do you choose a CSS Framework?</a><br /> <a href="http://stackoverflow.com/questions/76996">What is the best CSS GridFramework</a> </p> </blockquote> <p>I started off using <a href="http://blueprintcss.org/" rel="nofollow">Blueprint CSS</a> but have been hearing lots of things about <a href="http://960.gs/" rel="nofollow">960 Grid System</a> and <a href="http://developer.yahoo.com/yui/grids/" rel="nofollow">Yahoo! Grids</a>. </p> <p>I can't seem to get a good handle on which one to use (or why). </p> <p>I am looking for any advice about which grid system I should use. Ease of use, flexibility and code readability are important to me.</p> http://stackoverflow.com/questions/320373/ive-heard-of-dry-and-kiss-what-other-maxims-do-i-need 10 I've heard of DRY and KISS, what other maxims do I need? DrG 2008-11-26T11:26:48Z 2009-09-27T08:11:45Z <p>Being a self taught programmer, I base most of what I do on KISS and DRY. </p> <p>For me they encapsulate complex ideas well and DO help me to write better code.</p> <p>What else should I know?</p> http://stackoverflow.com/questions/243655/what-is-the-best-open-source-net-content-management-system-cms 1 What is the best open source .NET content management system (CMS)? DrG 2008-10-28T15:06:43Z 2009-09-24T12:34:27Z <p>I'm trying to find a decent (ie cheap / free) .NET content management system. DotNetNuke is not an option as far as I am concerned. </p> <p>Wish list:</p> <ol> <li>Works out of the box </li> <li>Easy to install</li> <li>Simple clean interface</li> <li>Skinable / template driven</li> <li>Free or cheap</li> <li>Open source preferred</li> </ol> <p>Or is is just better to PHP for this kind of thing? If so, what should I be checking out?</p> <p>Thanks :D</p> http://stackoverflow.com/questions/1211347/asp-net-has-no-access-to-iis-metabase/1211359#1211359 4 Answer by DrG for ASP.NET has no access to IIS metabase DrG 2009-07-31T08:46:57Z 2009-09-24T07:23:44Z <p>The rights of the ASPNET user have not been set correctly.</p> <p>What version of ASP.NET are you running?</p> <p>try</p> <pre><code>Start -&gt; Run Type cmd &lt;HIT RETURN&gt; Type c:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -i &lt;HIT RETURN&gt; </code></pre> http://stackoverflow.com/questions/460829/whats-a-quick-easy-way-to-send-html-emails-to-myself-to-test-them/461116#461116 1 Answer by DrG for What's a quick, easy way to send HTML emails to myself to test them? DrG 2009-01-20T12:35:10Z 2009-09-18T19:25:34Z <p>I'ld go with .NET and use the SMTP server that comes with IIS (of course, this only makes sense if you are running windows)</p> <pre><code>MailMessage mail = new MailMessage(); mail.To = "me@mycompany.com"; mail.From = "you@yourcompany.com"; mail.Subject = "this is a test email."; mail.BodyFormat = MailFormat.Html; mail.Body = "this is my test email body.&lt;br&gt;&lt;b&gt;this part is in bold&lt;/b&gt;"; // mail.Body = READ_FROM_FILE; etc SmtpMail.SmtpServer = "localhost"; //your real server goes here SmtpMail.Send( mail ); </code></pre> http://stackoverflow.com/questions/412813/when-to-use-arraylist-over-array-in-c 11 When to use ArrayList over array[] in c#? DrG 2009-01-05T11:07:28Z 2009-08-17T16:03:45Z <p>I often use an <code>ArrayList</code> instead of a 'normal' array[].</p> <p>I feel as if I am cheating (or being lazy) when I use an ArrayList, when is it okay to use an ArrayList over an array?</p> http://stackoverflow.com/questions/323371/asp-net-webmail-engine/323383#323383 1 Answer by DrG for ASP.NET Webmail Engine DrG 2008-11-27T10:08:36Z 2009-08-05T11:37:18Z <p>There is</p> <ul> <li>gmail <a href="http://www.google.com/mail" rel="nofollow">http:/www.google.com/mail</a> </li> <li>Outlook Exchange with Webmail <a href="http://www.microsoft.com/EXCHANGE/default.mspx" rel="nofollow">http://www.microsoft.com/EXCHANGE/default.mspx</a></li> <li>Yahoo mail etc </li> <li><a href="http://www.eudora.com" rel="nofollow">http://www.eudora.com/</a></li> <li><a href="http://www.bynari.net/products/server/products.html" rel="nofollow">http://www.bynari.net/products/server/products.html</a></li> <li><a href="http://atmail.com" rel="nofollow">http://atmail.com/</a></li> </ul> <p>try google "mail server with web client" or similar</p> http://stackoverflow.com/questions/1218684/asp-net-let-users-manage-content-on-the-website/1218864#1218864 1 Answer by DrG for asp.net - let users manage content on the website DrG 2009-08-02T13:05:14Z 2009-08-02T13:05:14Z <p>You asked about best practice, and if you are interested in best practice I would recommend you download a decent content management system (<a href="http://www.umbraco.org/" rel="nofollow">Umbraco</a> is a good .NET CMS) and use that.</p> <p>If you want to do something quick and dirty, that's possible too. Like you said you can easily use something like <a href="http://tinymce.moxiecode.com/" rel="nofollow">TinyMCE</a> or <a href="http://www.fckeditor.net/" rel="nofollow">FCKeditor</a> to knock up an app with the functionality you require, allowing users to update certain pages. (Note with a CMS you could achieve this by controlling access to certain pages anyway).</p> <p>If you were after the simplest solution (that money can buy :P), you could even look at an out of the box solution like <a href="http://www.adobe.com/products/contribute/" rel="nofollow">Adobe Contribute</a> for example.</p> http://stackoverflow.com/questions/1216163/a-element-inside-li-element-overflows-the-li-element/1216180#1216180 3 Answer by DrG for "a" element inside "li" element overflows the "li" element DrG 2009-08-01T08:35:44Z 2009-08-01T08:35:44Z <p>You could also have a look at sites like:</p> <ol> <li><a href="http://css.maxdesign.com.au/listamatic/" rel="nofollow">http://css.maxdesign.com.au/listamatic/</a></li> <li><a href="http://accessify.com/tools-and-wizards/developer-tools/list-o-matic/" rel="nofollow">http://accessify.com/tools-and-wizards/developer-tools/list-o-matic/</a></li> <li><a href="http://www.hongkiat.com/blog/50-nice-clean-css-tab-based-navigation-scripts/" rel="nofollow">http://www.hongkiat.com/blog/50-nice-clean-css-tab-based-navigation-scripts/</a></li> </ol> <p>Sometimes it is fun to re-invent the wheel, sometimes it isn't :D</p> http://stackoverflow.com/questions/1211044/what-is-the-replacement-for-a-blinking-text-in-a-web-page/1211147#1211147 3 Answer by DrG for What is the replacement for a blinking text in a web page? DrG 2009-07-31T07:27:34Z 2009-07-31T07:27:34Z <p>Start here!</p> <pre><code>.alternativeToBlink { font-family: font-size: color: background-color: border: text-decoration: } </code></pre> http://stackoverflow.com/questions/1206548/most-optimal-way-to-parse-querystring-within-a-string-in-c/1206638#1206638 1 Answer by DrG for Most optimal way to parse querystring within a string in C# DrG 2009-07-30T13:33:27Z 2009-07-30T13:33:27Z <p>RichardOD is on it with <a href="http://msdn.microsoft.com/en-gb/library/system.web.httputility.parsequerystring.aspx" rel="nofollow">HttpUtility.ParseQueryString</a> but don't forget to look at <code>TryParse</code>.</p> <p>You can TryParse <a href="http://msdn.microsoft.com/en-us/library/f02979c7.aspx" rel="nofollow">int</a>, <a href="http://msdn.microsoft.com/en-us/library/system.datetime.tryparse.aspx" rel="nofollow">DateTime</a>s etc</p> <p><a href="http://stackoverflow.com/questions/349742/how-do-you-test-your-request-querystring-variables">http://stackoverflow.com/questions/349742/how-do-you-test-your-request-querystring-variables</a></p> http://stackoverflow.com/questions/1177111/restrict-robot-access-for-specific-query-string-parameter-values 0 Restrict robot access for (specific) query string (parameter) values? DrG 2009-07-24T11:37:40Z 2009-07-24T11:41:10Z <p>Using robot.txt is it possible to restrict robot access for (specific) query string (parameter) values?</p> <p>ie</p> <pre><code>http://www.url.com/default.aspx #allow http://www.url.com/default.aspx?id=6 #allow http://www.url.com/default.aspx?id=7 #disallow </code></pre> http://stackoverflow.com/questions/1172434/alt-text-for-images-in-html/1172512#1172512 3 Answer by DrG for ALT text for images in HTML DrG 2009-07-23T15:18:24Z 2009-07-23T15:18:24Z <p>I'ld rule out EXIF as it does not support PNG and GIF. </p> <p>The db lookup sounds okay (to me) and would scale okay (as long as you did it cleverly). For example you should try to reduce lookups as much as possible.</p> <p>You might even already have some of this data, and it would be useful to have data about the images anyways</p> http://stackoverflow.com/questions/1172241/writing-to-notepad-wraps-at-arbitrary-point/1172271#1172271 6 Answer by DrG for Writing to Notepad wraps at arbitrary point? DrG 2009-07-23T14:45:31Z 2009-07-23T14:45:31Z <p>It probably isn't arbitrary, you just haven't seen the reason.</p> <p>Have a look at <a href="http://stackoverflow.com/questions/908119/c-textwriter-inserting-line-break-every-1024-characters/908135">http://stackoverflow.com/questions/908119/c-textwriter-inserting-line-break-every-1024-characters/908135</a></p> <p>The max length is 1024.</p> <p>Paste some example text if you can ;D</p> http://stackoverflow.com/questions/1172040/what-is-the-most-elegant-way-to-implement-gettextaftermarker/1172224#1172224 0 Answer by DrG for What is the most elegant way to implement GetTextAfterMarker() DrG 2009-07-23T14:38:47Z 2009-07-23T14:38:47Z <pre><code>public static string GetTextBeforeMarker(string line, string marker) { return GetTextAfterMarker(string line, string marker); } </code></pre> http://stackoverflow.com/questions/1142393/reasons-to-discourage-here-links-in-web-pages/1143346#1143346 2 Answer by DrG for Reasons to discourage "here" links in web pages DrG 2009-07-17T13:39:59Z 2009-07-17T13:48:24Z <p><a href="http://stackoverflow.com/questions/1142393/reasons-to-discourage-here-links-in-web-pages#1142402">Here</a> is the answer.</p> <p>I bet you thought twice before hitting that link</p> <p>It's pretty clear from here which one is better</p> <blockquote> <p>Visit the <a href="http://www.stackoverflow.com" rel="nofollow">Stackoverflow</a> site</p> </blockquote> <p>or</p> <blockquote> <p>Click <a href="http://www.stackoverflow.com" rel="nofollow">here</a> to visit the Stackoverflow site</p> </blockquote> <p>The confusion (if you want to call it that) arises when you are <em>actually</em> trying to get the user the click on something, eg. click here for more information, but even in those cases it is better to not use the click here format.</p> http://stackoverflow.com/questions/1142217/net-copy-protection/1143305#1143305 1 Answer by DrG for .NET copy protection DrG 2009-07-17T13:34:38Z 2009-07-17T13:34:38Z <p>Assuming the machine has an NIC you can use the <a href="http://en.wikipedia.org/wiki/MAC%5Faddress" rel="nofollow">MAC address</a>:</p> <p><a href="http://stackoverflow.com/questions/218284/read-mac-address-from-network-adapter-in-net">http://stackoverflow.com/questions/218284/read-mac-address-from-network-adapter-in-net</a></p> http://stackoverflow.com/questions/532892/can-i-multiply-a-string-in-c 9 Can I "multiply" a string (in C#)? DrG 2009-02-10T15:56:51Z 2009-06-05T20:44:48Z <p>Suppose I have a string, for example,</p> <pre><code>string snip = "&lt;/li&gt;&lt;/ul&gt;"; </code></pre> <p>I want to basically write it multiple times, depending on some integer value. </p> <pre><code>string snip = "&lt;/li&gt;&lt;/ul&gt;"; int multiplier = 2; // TODO: magic code to do this // snip * multiplier = "&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ul&gt;"; </code></pre> <p>EDIT: I know I can easily write my own function to implement this, I was just wondering if there was some weird string operator that I didn't know about</p> http://stackoverflow.com/questions/940191/rounded-corners-on-a-fieldset/940233#940233 1 Answer by DrG for Rounded corners on a fieldset DrG 2009-06-02T15:30:40Z 2009-06-02T15:30:40Z <p>There is no WHY as such, it is no secret that the browsers behave differently.</p> <p>Have you explored the <a href="http://www.the-art-of-web.com/css/border-radius/" rel="nofollow">-moz-border-radius</a> attribute?</p> <p>I think something like</p> <pre><code>fieldset { -moz-border-radius:5px; border-radius: 5px; -webkit-border-radius: 5px; //edit :D } </code></pre> <p>works in FireFox/Mozilla, but it has been a long time since I tried :D</p> http://stackoverflow.com/questions/927626/how-do-you-deal-with-internet-explorer/927746#927746 3 Answer by DrG for How do you deal with Internet Explorer? DrG 2009-05-29T19:34:49Z 2009-05-29T19:34:49Z <p>With <a href="http://en.wikipedia.org/wiki/Usage%5Fshare%5Fof%5Fweb%5Fbrowsers#Present%5Fto%5F1999" rel="nofollow">IE getting around 65% of the traffic</a>, I don't think you can think of it as an after-thought.</p> http://stackoverflow.com/questions/573692/is-the-size-of-an-array-constrained-by-the-upper-limit-of-int-2147483647 3 Is the size of an array constrained by the upper limit of int (2147483647)? DrG 2009-02-21T20:31:50Z 2009-05-29T18:45:40Z <p>I'm doing some <a href="http://projecteuler.net/" rel="nofollow">Project Euler</a> exercises and I've run into a scenario where I <strike>have</strike> want arrays which are larger than 2,147,483,647 (the upper limit of <code>int</code> in C#). </p> <p>Sure these are large arrays, but for instance, I can't do this </p> <pre><code>// fails bool[] BigArray = new BigArray[2147483648]; // also fails, cannot convert uint to int ArrayList BigArrayList = new ArrayList(2147483648); </code></pre> <p>So, can I have bigger arrays?</p> <p>EDIT: It was for a <a href="http://en.wikipedia.org/wiki/Sieve%5Fof%5FAtkin" rel="nofollow">Sieve of Atkin</a>, you know, so I just wanted a really big one :D</p> http://stackoverflow.com/questions/915750/wav-mp3-conversion-on-web-server/915764#915764 1 Answer by DrG for WAV / MP3 Conversion On Web Server DrG 2009-05-27T13:39:42Z 2009-05-27T13:39:42Z <p>Have you tried LAME? <a href="http://lame.sourceforge.net/index.php" rel="nofollow">http://lame.sourceforge.net/index.php</a> </p> http://stackoverflow.com/questions/910724/is-it-possible-to-prevent-document-scrolling-when-arrow-keys-are-pressed/910758#910758 0 Answer by DrG for Is it possible to prevent document scrolling when arrow keys are pressed? DrG 2009-05-26T13:44:39Z 2009-05-26T13:51:35Z <p>Probably, but it's not usually a good idea to break a convention that everyone knows and understands :D</p> http://stackoverflow.com/questions/908119/c-textwriter-inserting-line-break-every-1024-characters/908135#908135 5 Answer by DrG for C# TextWriter inserting line break every 1024 characters DrG 2009-05-25T21:39:53Z 2009-05-25T21:39:53Z <p>Use Write, not WriteLine</p> http://stackoverflow.com/questions/872442/cost-of-common-operations-for-c 4 Cost of common operations for C#? DrG 2009-05-16T13:30:36Z 2009-05-22T09:40:56Z <p>In <a href="http://rads.stackoverflow.com/amzn/click/0735619670" rel="nofollow">Code Complete 2</a> (page 601 and 602) there is a table of "Cost of Common Operations".</p> <p>The baseline operation integer assignment is given a value 1 and then the relative time for common operations is listed for Java and C++. For example:</p> <pre><code> C++ Java Integer assignment 1 1 Integer division 5 1.5 Floating point square root 15 4 </code></pre> <p>The question is has anyone got this data for C#? I know that these won't help me solve any problems specifically, I'm just curious.</p> http://stackoverflow.com/questions/892205/how-to-attach-a-external-style-sheet-with-evary-page-of-asp/892229#892229 1 Answer by DrG for how to attach a external style sheet with evary page of asp DrG 2009-05-21T10:16:49Z 2009-05-21T10:16:49Z <p>Have a look at <a href="http://msdn.microsoft.com/en-us/library/wtxbf3hh.aspx" rel="nofollow">ASP.NET Master Pages Overview</a> it may be what you are looking for. </p> <blockquote> <p>ASP.NET master pages allow you to create a consistent layout for the pages in your application. A single master page defines the look and feel and standard behavior that you want for all of the pages (or a group of pages) in your application. You can then create individual content pages that contain the content you want to display. When users request the content pages, they merge with the master page to produce output that combines the layout of the master page with the content from the content page.</p> </blockquote> http://stackoverflow.com/questions/881767/is-it-possible-to-change-the-color-of-a-word-in-a-textbox/881870#881870 0 Answer by DrG for Is it possible to change the color of a word in a textbox? DrG 2009-05-19T09:56:48Z 2009-05-19T09:56:48Z <p>No you cannot use different styles in a standard <code>&lt;textarea&gt;</code>.</p> http://stackoverflow.com/questions/1674378/which-ternary-operator-in-c-is-most-popular-and-mostly-used/1674388#1674388 Comment by DrG on Which ternary operator in C# is most popular and mostly used? DrG 2009-11-04T15:09:42Z 2009-11-04T15:09:42Z When did you change your name? http://stackoverflow.com/questions/1618856/isapi-rewrite-rule-help-http-www-foo-com-bar-http-www-foo-com-bar-aspx/1618859#1618859 Comment by DrG on ISAPI Rewrite rule help (http://www.foo.com/bar --> http://www.foo.com/bar.aspx) DrG 2009-10-24T20:16:14Z 2009-10-24T20:16:14Z what would happen to <code>foo.com/bar.pdf</code>. I want that to get left alone too. Maybe I actually need your second rule. It's beginning to sink in! I feel like I might need a combination of both. Thanks for your help Gumbo, I'm on much better footing than before :D http://stackoverflow.com/questions/1618856/isapi-rewrite-rule-help-http-www-foo-com-bar-http-www-foo-com-bar-aspx/1618859#1618859 Comment by DrG on ISAPI Rewrite rule help (http://www.foo.com/bar --> http://www.foo.com/bar.aspx) DrG 2009-10-24T19:44:49Z 2009-10-24T19:44:49Z Awesome! What does this say in english &quot;RewriteCond $1 !.*\.aspx$&quot; http://stackoverflow.com/questions/1579587/c-how-can-i-get-the-current-season-summer-winter-etc/1579647#1579647 Comment by DrG on C#: How can I get the current season? (Summer, Winter, etc...) DrG 2009-10-17T14:05:54Z 2009-10-17T14:05:54Z When does your winter end Guffa? http://stackoverflow.com/questions/1579587/c-how-can-i-get-the-current-season-summer-winter-etc Comment by DrG on C#: How can I get the current season? (Summer, Winter, etc...) DrG 2009-10-16T18:35:28Z 2009-10-16T18:35:28Z Are you going to want other Branding periods like Christmas, Easter, Halloween etc?? http://stackoverflow.com/questions/1277248/where-can-i-write-css-certification-exam-online Comment by DrG on Where can i write CSS Certification Exam (online) DrG 2009-08-14T11:28:07Z 2009-08-14T11:28:07Z A portfolio may be more valuable than a certification.... http://stackoverflow.com/questions/1272606/strange-tabbing-problem Comment by DrG on Strange tabbing problem DrG 2009-08-13T15:15:28Z 2009-08-13T15:15:28Z &quot;The text boxes are contained within a tab container asp.net ajax control and I have some modal pop up extenders but other than that its a pretty standard page.&quot; .. sounds like big other than that :p http://stackoverflow.com/questions/1272498/can-i-xcopy-a-sqlserver-db-and-log-file-to-my-new-computer Comment by DrG on Can I xcopy a sqlserver db and log file to my new computer? DrG 2009-08-13T15:13:14Z 2009-08-13T15:13:14Z It's as easy as it sounds http://stackoverflow.com/questions/1272561/sql-how-do-you-make-the-first-letter-a-big-capital/1272590#1272590 Comment by DrG on SQL: How Do You Make The First Letter A Big Capital? DrG 2009-08-13T15:11:31Z 2009-08-13T15:11:31Z uhmm you mean Title Case right? http://stackoverflow.com/questions/1211044/what-is-the-replacement-for-a-blinking-text-in-a-web-page/1211060#1211060 Comment by DrG on What is the replacement for a blinking text in a web page? DrG 2009-07-31T07:31:26Z 2009-07-31T07:31:26Z pulsating!!! beats blinking every time :p http://stackoverflow.com/questions/1078311/sql-views-in-subsonic-3-0/1097766#1097766 Comment by DrG on SQL Views in SubSonic 3.0 DrG 2009-07-26T20:08:28Z 2009-07-26T20:08:28Z +10, if I could, thx http://stackoverflow.com/questions/1177111/restrict-robot-access-for-specific-query-string-parameter-values/1177134#1177134 Comment by DrG on Restrict robot access for (specific) query string (parameter) values? DrG 2009-07-24T11:45:23Z 2009-07-24T11:45:23Z Thanks I just wasn't sure about this, that's what I thought :D http://stackoverflow.com/questions/1176887/how-can-i-find-the-harddisk-device-serial-number-without-using-the-wmi-in-net Comment by DrG on How can I find the Harddisk Device Serial Number without using the WMI in .NET? DrG 2009-07-24T10:51:24Z 2009-07-24T10:51:24Z Open up the box and have a look? http://stackoverflow.com/questions/1176475/how-to-do-this-aa1-in-sql-server-query Comment by DrG on How to do this: a=a+1 in sql server query ? DrG 2009-07-24T08:53:26Z 2009-07-24T08:53:26Z I think you are going to need to provide a little more information http://stackoverflow.com/questions/1176276/how-do-i-improve-the-performance-of-code-using-datetime-tostring/1176347#1176347 Comment by DrG on How do I improve the performance of code using DateTime.ToString? DrG 2009-07-24T08:40:24Z 2009-07-24T08:40:24Z @Marc great minds think alike!!