User DrG - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T02:48:49Zhttp://stackoverflow.com/feeds/user/31765http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1605836/can-i-get-all-the-fields-in-an-item-in-sitecore0Can I get all the fields in an item (in Sitecore)?DrG2009-10-22T08:43:41Z2009-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-aspx0ISAPI Rewrite rule help (http://www.foo.com/bar --> http://www.foo.com/bar.aspx)DrG2009-10-24T19:37:00Z2009-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 --> http://www.foo.com/bar.aspx
http://www.foo.com/bar?q=boo --> 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 --> http://www.foo.com/bar.aspx
http://www.foo.com/bar.pdf --> 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-variables10How do you test your Request.QueryString[] variables?DrG2008-12-08T14:39:07Z2009-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-learn3Which css grid system should I learn? [closed]DrG2009-04-06T11:23:57Z2009-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-need10I've heard of DRY and KISS, what other maxims do I need?DrG2008-11-26T11:26:48Z2009-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-cms1What is the best open source .NET content management system (CMS)?DrG2008-10-28T15:06:43Z2009-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#12113594Answer by DrG for ASP.NET has no access to IIS metabaseDrG2009-07-31T08:46:57Z2009-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 -> Run
Type cmd <HIT RETURN>
Type c:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_regiis -i <HIT RETURN>
</code></pre>
http://stackoverflow.com/questions/460829/whats-a-quick-easy-way-to-send-html-emails-to-myself-to-test-them/461116#4611161Answer by DrG for What's a quick, easy way to send HTML emails to myself to test them?DrG2009-01-20T12:35:10Z2009-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.<br><b>this part is in bold</b>";
// 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-c11When to use ArrayList over array[] in c#?DrG2009-01-05T11:07:28Z2009-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#3233831Answer by DrG for ASP.NET Webmail EngineDrG2008-11-27T10:08:36Z2009-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#12188641Answer by DrG for asp.net - let users manage content on the websiteDrG2009-08-02T13:05:14Z2009-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#12161803Answer by DrG for "a" element inside "li" element overflows the "li" elementDrG2009-08-01T08:35:44Z2009-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#12111473Answer by DrG for What is the replacement for a blinking text in a web page?DrG2009-07-31T07:27:34Z2009-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#12066381Answer by DrG for Most optimal way to parse querystring within a string in C#DrG2009-07-30T13:33:27Z2009-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-values0Restrict robot access for (specific) query string (parameter) values?DrG2009-07-24T11:37:40Z2009-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#11725123Answer by DrG for ALT text for images in HTMLDrG2009-07-23T15:18:24Z2009-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#11722716Answer by DrG for Writing to Notepad wraps at arbitrary point?DrG2009-07-23T14:45:31Z2009-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#11722240Answer by DrG for What is the most elegant way to implement GetTextAfterMarker()DrG2009-07-23T14:38:47Z2009-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#11433462Answer by DrG for Reasons to discourage "here" links in web pagesDrG2009-07-17T13:39:59Z2009-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#11433051Answer by DrG for .NET copy protectionDrG2009-07-17T13:34:38Z2009-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-c9Can I "multiply" a string (in C#)?DrG2009-02-10T15:56:51Z2009-06-05T20:44:48Z
<p>Suppose I have a string, for example,</p>
<pre><code>string snip = "</li></ul>";
</code></pre>
<p>I want to basically write it multiple times, depending on some integer value. </p>
<pre><code>string snip = "</li></ul>";
int multiplier = 2;
// TODO: magic code to do this
// snip * multiplier = "</li></ul></li></ul>";
</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#9402331Answer by DrG for Rounded corners on a fieldsetDrG2009-06-02T15:30:40Z2009-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#9277463Answer by DrG for How do you deal with Internet Explorer?DrG2009-05-29T19:34:49Z2009-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-21474836473Is the size of an array constrained by the upper limit of int (2147483647)?DrG2009-02-21T20:31:50Z2009-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#9157641Answer by DrG for WAV / MP3 Conversion On Web ServerDrG2009-05-27T13:39:42Z2009-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#9107580Answer by DrG for Is it possible to prevent document scrolling when arrow keys are pressed?DrG2009-05-26T13:44:39Z2009-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#9081355Answer by DrG for C# TextWriter inserting line break every 1024 charactersDrG2009-05-25T21:39:53Z2009-05-25T21:39:53Z<p>Use Write, not WriteLine</p>
http://stackoverflow.com/questions/872442/cost-of-common-operations-for-c4Cost of common operations for C#?DrG2009-05-16T13:30:36Z2009-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#8922291Answer by DrG for how to attach a external style sheet with evary page of aspDrG2009-05-21T10:16:49Z2009-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#8818700Answer by DrG for Is it possible to change the color of a word in a textbox?DrG2009-05-19T09:56:48Z2009-05-19T09:56:48Z<p>No you cannot use different styles in a standard <code><textarea></code>.</p>
http://stackoverflow.com/questions/1674378/which-ternary-operator-in-c-is-most-popular-and-mostly-used/1674388#1674388Comment by DrG on Which ternary operator in C# is most popular and mostly used?DrG2009-11-04T15:09:42Z2009-11-04T15:09:42ZWhen 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#1618859Comment by DrG on ISAPI Rewrite rule help (http://www.foo.com/bar --> http://www.foo.com/bar.aspx)DrG2009-10-24T20:16:14Z2009-10-24T20:16:14Zwhat 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 :Dhttp://stackoverflow.com/questions/1618856/isapi-rewrite-rule-help-http-www-foo-com-bar-http-www-foo-com-bar-aspx/1618859#1618859Comment by DrG on ISAPI Rewrite rule help (http://www.foo.com/bar --> http://www.foo.com/bar.aspx)DrG2009-10-24T19:44:49Z2009-10-24T19:44:49ZAwesome! What does this say in english "RewriteCond $1 !.*\.aspx$"http://stackoverflow.com/questions/1579587/c-how-can-i-get-the-current-season-summer-winter-etc/1579647#1579647Comment by DrG on C#: How can I get the current season? (Summer, Winter, etc...)DrG2009-10-17T14:05:54Z2009-10-17T14:05:54ZWhen does your winter end Guffa?http://stackoverflow.com/questions/1579587/c-how-can-i-get-the-current-season-summer-winter-etcComment by DrG on C#: How can I get the current season? (Summer, Winter, etc...)DrG2009-10-16T18:35:28Z2009-10-16T18:35:28ZAre you going to want other Branding periods like Christmas, Easter, Halloween etc??http://stackoverflow.com/questions/1277248/where-can-i-write-css-certification-exam-onlineComment by DrG on Where can i write CSS Certification Exam (online)DrG2009-08-14T11:28:07Z2009-08-14T11:28:07ZA portfolio may be more valuable than a certification....http://stackoverflow.com/questions/1272606/strange-tabbing-problemComment by DrG on Strange tabbing problemDrG2009-08-13T15:15:28Z2009-08-13T15:15:28Z"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." .. sounds like big other than that :phttp://stackoverflow.com/questions/1272498/can-i-xcopy-a-sqlserver-db-and-log-file-to-my-new-computerComment by DrG on Can I xcopy a sqlserver db and log file to my new computer?DrG2009-08-13T15:13:14Z2009-08-13T15:13:14ZIt's as easy as it soundshttp://stackoverflow.com/questions/1272561/sql-how-do-you-make-the-first-letter-a-big-capital/1272590#1272590Comment by DrG on SQL: How Do You Make The First Letter A Big Capital?DrG2009-08-13T15:11:31Z2009-08-13T15:11:31Zuhmm you mean Title Case right?http://stackoverflow.com/questions/1211044/what-is-the-replacement-for-a-blinking-text-in-a-web-page/1211060#1211060Comment by DrG on What is the replacement for a blinking text in a web page?DrG2009-07-31T07:31:26Z2009-07-31T07:31:26Zpulsating!!! beats blinking every time :phttp://stackoverflow.com/questions/1078311/sql-views-in-subsonic-3-0/1097766#1097766Comment by DrG on SQL Views in SubSonic 3.0DrG2009-07-26T20:08:28Z2009-07-26T20:08:28Z+10, if I could, thxhttp://stackoverflow.com/questions/1177111/restrict-robot-access-for-specific-query-string-parameter-values/1177134#1177134Comment by DrG on Restrict robot access for (specific) query string (parameter) values?DrG2009-07-24T11:45:23Z2009-07-24T11:45:23ZThanks I just wasn't sure about this, that's what I thought :Dhttp://stackoverflow.com/questions/1176887/how-can-i-find-the-harddisk-device-serial-number-without-using-the-wmi-in-netComment by DrG on How can I find the Harddisk Device Serial Number without using the WMI in .NET?DrG2009-07-24T10:51:24Z2009-07-24T10:51:24ZOpen up the box and have a look?http://stackoverflow.com/questions/1176475/how-to-do-this-aa1-in-sql-server-queryComment by DrG on How to do this: a=a+1 in sql server query ?DrG2009-07-24T08:53:26Z2009-07-24T08:53:26ZI think you are going to need to provide a little more informationhttp://stackoverflow.com/questions/1176276/how-do-i-improve-the-performance-of-code-using-datetime-tostring/1176347#1176347Comment by DrG on How do I improve the performance of code using DateTime.ToString?DrG2009-07-24T08:40:24Z2009-07-24T08:40:24Z@Marc great minds think alike!!