User Dustman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T16:55:09Zhttp://stackoverflow.com/feeds/user/16398http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1230281/how-can-i-rewrite-the-errormessage-for-a-customvalidator-control-on-the-client1How can I rewrite the ErrorMessage for a CustomValidator control on the client?Dustman2009-08-04T22:46:17Z2009-11-22T22:40:35Z
<p>I have a CustomValidator that is validating a telephone number for several different telephone numbering schemes. The client-side javascript looks like this:</p>
<pre><code>validatePhoneNumber(sender, args) {
cleanNumber = args.Value.replace(/\D/, "");
country = $("#" + CountryID).get(0).value;
switch (country) {
case "North America":
args.IsValid = validateNAPhoneNumber(cleanNumber);
if (!args.IsValid) sender.errormessage = "* Not a NA Phone #";
break;
case "UK":
args.IsValid = validateUKPhoneNumber(cleanumber);
if (!args.IsValid) sender.errormessage = "* Not a UK Phone #";
break;
...
}
}
</code></pre>
<p>The actual validation takes place properly, and the CustomValidator has the correct IsValid property at all times. The sender.errormessage, however, seems to be rewritten just after this function call to it's default value. How can I change the errormessage value, and make it "stick"?</p>
http://stackoverflow.com/questions/87431/what-are-the-major-vulnerabilities-of-redhat-apache-2What are the major vulnerabilities of Redhat + Apache?Dustman2008-09-17T20:40:02Z2009-10-03T08:47:17Z
<p>I am searching for a host for a new commercial website. Among other things, I'd like to know what the various OS - Webserver combinations have in terms of vulnerabilities. What are the vulnerabilities of Redhat + Apache?</p>
http://stackoverflow.com/questions/111933/why-shouldnt-i-use-hungarian-notation32Why shouldn't I use "Hungarian Notation"?Dustman2008-09-21T20:08:53Z2009-07-21T16:26:21Z
<p>I know what Hungarian refers to - giving information about a variable, parameter, or type as a prefix to its name. Everyone seems to be rabidly against it, even though in some cases it seems to be a good idea. If I feel that useful information is being imparted, why shouldn't I put it right there where it's available?</p>
<p>See also: <a href="http://stackoverflow.com/questions/5428/do-people-use-the-hungarian-naming-conventions-in-the-real-world">Do people use the Hungarian naming conventions in the real world?</a> </p>
http://stackoverflow.com/questions/111578/what-are-some-gui-clients-available-for-mercurial5What are some GUI clients available for Mercurial?Dustman2008-09-21T18:13:46Z2009-06-27T23:30:46Z
<p>And where would I find them?</p>
<p>I happen to be stuck with Windows at the moment, but to appeal to general interest, other platforms would be good too.</p>
http://stackoverflow.com/questions/116992/is-there-an-equivalent-to-the-xna-framework-for-consoles-other-than-xbox3608Is there an equivalent to the XNA framework for consoles other than XBox360?Dustman2008-09-22T19:33:23Z2009-05-12T08:41:43Z
<p>It's gotta be free. It's hobby, after all, not a business!. Creating for-profit software isn't an issue, but anything that requires a hardware mod is out.</p>
http://stackoverflow.com/questions/675518/odd-problem-with-listbox-datasource/676117#6761171Answer by Dustman for Odd problem with ListBox.DataSourceDustman2009-03-24T03:57:55Z2009-03-24T03:57:55Z<p>Off the top of my head, this is because the <code>ListBox.DataSource</code> property must contain something that implements the <code>IList</code> interface. Your generic <code>List<SubObject></code> does not implement <code>IList</code>; it implements <code>IList<T></code> (in the <code>System.Collections.Generic</code> namespace). <code>Array</code> objects, on the other hand do inherit from <code>IList</code>, so handing the data in via that kind of object works.</p>
<p>You could try pulling an <code>Enumerator</code> (which also implements <code>IList</code>) out of your <code>List<SubObject></code> object and plug that in. If it works, then the issue I've described is your problem. If it doesn't, then I'm talking out of my hat.</p>
<p>If this is indeed the issue, I am surprised that shoving in an unsupported object doesn't throw an exception.</p>
http://stackoverflow.com/questions/623107/c-database-in-a-file/623121#6231210Answer by Dustman for C# database in a fileDustman2009-03-08T05:34:08Z2009-03-08T05:39:09Z<p>If you are using Visual Studio or Web Developer Express, there are indeed ways to easily create a MS SQLExpress database. Just go to Add New Item... and it should be one of the available file types.</p>
<p>Keep in mind you have to have installed either Microsoft SQL Express Edition (free, as in beer!) or Microsoft SQL (very un-free!, in all senses). If you haven't done this, you don't get the option of creating a database file so easily. If you have got it yet, you can get it <a href="http://www.microsoft.com/express/sql/default.aspx" rel="nofollow">here</a>.</p>
<p>As other answerers have mentioned, strictly speaking this is NOT a C# feature. MS SQL and it's derivatives, are database applications, much like Oracle, MySQL, or PostgreSQL. It's just that Microsoft Visual Studio makes using the Microsoft database product very easy by default. Differentiating between C#, Visual Studio, and any database programs will probably get you better answers, faster, no matter where you ask. :)</p>
http://stackoverflow.com/questions/87371/what-are-the-major-vulnerabilities-of-windows-2003-apache-1What are the major vulnerabilities of Windows 2003 + Apache?Dustman2008-09-17T20:36:37Z2009-02-27T20:19:59Z
<p>I am searching for a host for a new commercial website. Among other things, I'd like to know what the various OS - Webserver combinations have in terms of vulnerabilities. What are the vulnerabilities of Windows 2003 + Apache?</p>
http://stackoverflow.com/questions/112482/what-is-the-difference-between-lang-and-type-attributes-in-a-script-tag2What is the difference between "lang" and "type" attributes in a script tag?Dustman2008-09-21T23:08:21Z2009-02-25T18:39:33Z
<p>For <code><script></code> HTML tags, what is the technical difference between "lang=Javascript" and "type=text/javascript"?</p>
<p>I usually use both, because I've always assumed that older browsers need one or the other.</p>
http://stackoverflow.com/questions/267607/how-can-i-find-out-what-a-macro-does-without-exposing-myself-to-it1How can I find out what a macro does without exposing myself to it?Dustman2008-11-06T04:03:46Z2008-11-06T04:40:48Z
<p>I have been given two different Microsoft Word document that my virus scanner has warned me contains macros. These should be simple text files, and the person who sent them doesn't even know what a macro is; they may be a mistake on his part, but they might be signs of a malicious infection. My installation of OpenOffice.org is set not to load macros at all, as I rarely use them, so I am not concerned about the security of my system. What I would like to be able to do is find out what those macros do without exposing my system to any malicious intent from those macros, in order to tell the person who sent me the documents whether or not he is spreading an infection.</p>
http://stackoverflow.com/questions/169477/using-in-a-path-resolves-as-c3Using "~" in a path resolves as C:\Dustman2008-10-04T01:10:19Z2008-10-27T17:44:05Z
<p>I'm trying to implement a server control that frobs a couple of files inside the web directory of an ASP.NET site. I'm using VS Web Dev Express 2008 as my IDE. When I call <code>HttpContext.Current.Request.ApplicationPath</code> to get a path to the web root so I can find those files, it returns C:. What the heck?</p>
<p>Absolute paths work just fine, but I'd like to be able to feed the server control a relative directory and just let it do it's thing. What have I done wrong?</p>
<pre><code>public String Target
{
get { return _target; }
set
{
if (value.StartsWith("~"))
{
// WTF? Gives me C:\? Why?
_target = HttpContext.Current.Request.ApplicationPath +
value.Substring(1);
}
else
{
_target = value;
}
}
}
private String _target;
protected override void Render(HtmlTextWriter writer)
{
HtmlControl wrapper = new HtmlGenericControl("div");
int fileCount = 0;
try
{
DirectoryInfo dir = new DirectoryInfo(_target);
foreach (FileInfo f in dir.GetFiles())
{
fileCount++;
a = new HtmlAnchor();
a.Attributes.Add("href", f.FullName);
a.InnerHtml = f.Name;
wrapper.Controls.Add(a);
}
}
catch (IOException e)
{
throw e;
}
Controls.Add(wrapper);
base.Render(writer);
}
</code></pre>
http://stackoverflow.com/questions/240638/which-version-of-c-and-net-should-i-begin-with/240677#2406771Answer by Dustman for Which version of C# (and .Net) should I begin with?Dustman2008-10-27T17:12:53Z2008-10-27T17:12:53Z<p>Learn the latest, absolutely. Why, for instance, would you want to get in the habit of using pre-generic C# containers, and then have to unlearn that? Read up on the older stuff as you encounter it in old code.</p>
http://stackoverflow.com/questions/209980/how-can-i-give-each-li-its-own-bullet-image8How can I give each <li> its own bullet image?Dustman2008-10-16T19:45:57Z2008-10-16T22:33:15Z
<p>I have tried</p>
<pre><code><ul id="contact_list">
<li id="phone">Local 604-555-5555</li>
<li id="i18l_phone">Toll-Free 1-800-555-5555</li>
</ul>
</code></pre>
<p>with</p>
<pre><code>#contact_list
{
list-style: disc none inside;
}
#contact_list #phone
{
list-style-image: url(images/small_wood_phone.png);
}
#contact_list #i18l_phone
{
list-style-image: url(images/i18l_wood_phone.png);
}
</code></pre>
<p>to no avail. Only a disc appears. If I want each individual list item to have it's own bullet, how can I accomplish this with css, <strong><em>without using background images</em></strong>.</p>
<p>Edit : I have discovered that, despite what firebug tells me, the list-style-image rule is being overridden somehow. If I inline the rule, like so:</p>
<pre><code> <li id="phone" style="list-style-image: url(images/small_wood_phone.png);">Local 604-555-5555</li>
</code></pre>
<p>then all is well. Since I have no other rules in the test case I'm running that contains ul or li in the selector, I'm not sure why inlining gives a different result.</p>
http://stackoverflow.com/questions/209980/how-can-i-give-each-li-its-own-bullet-image/210232#2102322Answer by Dustman for How can I give each <li> its own bullet image?Dustman2008-10-16T20:44:21Z2008-10-16T20:44:21Z<p>I never would have thought. If I quote the url, like so:</p>
<pre><code>#contact_list #phone
{
list-style-image: url("/images/small_wood_phone.png");
}
</code></pre>
<p>it starts working. I unquote it, and it stops. WTF? That's not supposed to make a difference.</p>
<p>Thanks for your help, everyone.</p>
http://stackoverflow.com/questions/138761/web-applications-desktop-applications/171024#1710242Answer by Dustman for Web Applications & Desktop ApplicationsDustman2008-10-04T21:30:34Z2008-10-04T21:30:34Z<p>It's all about what kind of programs you want to be writing. End-user apps already have already started a significant move to being web-oriented, because of the advantages that some companies find in outsourcing their data handling and IT infrastructure. Because this area of development is a new and growing sector, I have no doubt that you will be getting all kinds of offers, and hearing all about new startups and so forth that are centered on developing these kinds of applications.</p>
<p>That doesn't mean that desktop apps are going to go away. Some companies, and lots of private individuals like to have a sense of being in physical possession of their data, and see no monetary benefit in "renting" an online app or in outsourcing their data handling. These people are going to keep the desktop app market open in the foreseeable future, although perhaps not to the extent that we have seen previously.</p>
<p>So at this point, you needn't feel forced to make a move into the web game, but there are certainly opportunities there if you want them.</p>
http://stackoverflow.com/questions/110305/internet-explorer-ol-numbers-appear-at-bottom-of-li-instead-of-top-as-expected/131103#1311032Answer by Dustman for Internet Explorer ol numbers appear at bottom of li instead of top as expectedDustman2008-09-25T02:05:48Z2008-09-25T19:42:40Z<p>Congratulations, you are the victim of IE's <a href="http://msdn.microsoft.com/en-us/library/ms533776.aspx" rel="nofollow">hasLayout</a> property.</p>
<p>Short version: You've got it easy this time. Changes these rules:</p>
<pre><code>...
ol {
font-size: 1.1em;
}
...
li.main_item {
width: 700px;
clear: right;
}
...
</code></pre>
<p>To this:</p>
<pre><code>...
ol {
font-size: 1.1em;
width: 700px;
}
...
li.main_item {
clear: right;
}
...
</code></pre>
<p>And it's all good.</p>
<p>Longer version: When you apply certain CSS rules to certain elements, IE 5.5+ gives those elements a property called "hasLayout" that changes how that element is rendered. Since hasLayout was a read-only property with no apparent purpose, it took quite a while before web designers caught on to the issue. Older sites (even Quirksmode.org!) still has pages that suggest twiddling padding, margins, or even using Javascript to fix these issues. If you can at all help it, don't do these things. Instead, see if you can find out what element is incorrectly being given hasLayout, and change the offending CSS so that the element no longer gets hasLayout. If that totally borks your page, use <a href="http://www.quirksmode.org/css/condcom.html" rel="nofollow">conditional comments</a> to fix it just for IE. Here are some CSS rules that add "hasLayout" to an element that doesn't already have it:</p>
<ul>
<li>position: absolute</li>
<li>float: left|right</li>
<li>display: inline-block</li>
<li>height: any value other than 'auto'</li>
<li>zoom: any value other than 'normal' (MS proprietary)</li>
<li>writing-mode: tb-rl (MS proprietary)</li>
</ul>
<p>As of IE7, overflow became a trigger for hasLayout.</p>
<ul>
<li>overflow: hidden|scroll|auto</li>
</ul>
<p>Longest version: read the following articles.</p>
<ol>
<li>Here's all the neat things Microsoft would like you do <a href="http://msdn.microsoft.com/en-us/library/bb250481.aspx" rel="nofollow">by triggering "hasLayout"</a>. </li>
<li>Here's the clean-language version of <a href="http://www.satzansatz.de/cssd/onhavinglayout" rel="nofollow">what web designers thought about hasLayout</a> when they found out what was going on. Some of the same content, but includes CSS hacks and stuff.</li>
</ol>
http://stackoverflow.com/questions/134214/create-a-method-call-in-net-based-on-a-string-value/134941#1349410Answer by Dustman for Create a method call in .NET based on a string valueDustman2008-09-25T18:07:31Z2008-09-25T19:28:33Z<p>The "Closest to your question" solution.</p>
<p>You could make delegates out of those reports, and call them by looking up the matching String in a Hashtable:</p>
<pre><code>Public Sub New()
'...
ReportTable.Add("Security", New ReportDelegate(AddressOf ShowSecurityReport))
ReportTable.Add("Config", New ReportDelegate(AddressOf ShowConfigReport))
ReportTable.Add("RoleUsers", New ReportDelegate(AddressOf ShowRoleUsersReport))
'...
End Sub
Private Sub ShowSecurityReport()
'...
End Sub
Private Sub ShowConfigReport()
'...
End Sub
Private Sub ShowRoleUsersReport()
'...
End Sub
Private Delegate Sub ReportDelegate()
Private ReportTable As New Dictionary(Of String, ReportDelegate)
Private Sub ShowReport(ByVal reportName As String)
Dim ReportToRun As ReportDelegate
If ReportTable.TryGetValue(reportName, ReportToRun) Then
ReportToRun()
Else
pnlMessage.Visible = True
litMessage.Text = "The report name """ + reportName + """ is invalid."
End If
End Sub
</code></pre>
<p>That way you can add as many reports as you like, and your ability to reflect them, and the perf hit of reflection, aren't an issue.</p>
http://stackoverflow.com/questions/130508/what-font-size-do-you-use-in-your-code-editor/130545#1305451Answer by Dustman for What font size do you use in your code editor?Dustman2008-09-24T23:16:29Z2008-09-24T23:16:29Z<p>Smaller sizes with a high contrast, light text on dark background.</p>
<p>NOT white on black, though. That's insane.</p>
http://stackoverflow.com/questions/125081/what-is-the-worst-project-failure-youve-ever-been-on0What is the worst project failure you've ever been on?Dustman2008-09-24T02:27:42Z2008-09-24T06:06:43Z
<p>Most importantly, why did it fail?</p>
<p>What I'm looking for here is pathologies that anyone, whether new to the team or just waking up one day,can spot.</p>
http://stackoverflow.com/questions/116684/what-algorithm-should-i-use-to-hash-passwords-into-my-database5What algorithm should I use to hash passwords into my database?Dustman2008-09-22T18:41:33Z2008-09-23T18:58:08Z
<p>Is there <em>anything</em> available that isn't trivially breakable?</p>
http://stackoverflow.com/questions/118624/what-is-semantic-markup-and-why-would-i-want-to-use-that2What is semantic markup, and why would I want to use that?Dustman2008-09-23T01:26:28Z2008-09-23T04:02:36Z
<p>Like it says.</p>
http://stackoverflow.com/questions/111576/when-the-bots-attack/111614#1116141Answer by Dustman for When the bots attack!Dustman2008-09-21T18:22:06Z2008-09-23T02:12:35Z<p>Honeypots are one effective method. Phil Haack gives one <a href="http://haacked.com/archive/2007/09/11/honeypot-captcha.aspx" rel="nofollow">good honeypot method</a>, that could be used in principle for any forum/blog/etc.</p>
<p>You could also write a crawler that follows spam links and analyzes their page to see if it's a genuine link or not. The most obvious would be pages with an exact copy of your content, but you could pick out other indicators.</p>
<p>Moderation and blacklisting, especially with plugins like these ones for <a href="http://www.online-tech-tips.com/wordpress/a-complete-list-of-anti-plagiarism-and-content-theft-fighting-wordpress-plugins/" rel="nofollow">WordPress</a> (or whatever you're using, similar software is available for most platforms), will work in a low-volume environment. If your environment is a low volume one, don't underestimate the advantage this gives you. Personally deciding what is reasonable content and what isn't gives you ultimate flexibility in spam control, if you have the time.</p>
<p>Don't forget, as others have pointed out, that CAPTCHAs are not limited to text recognition from an image. Visual association, math problems, and other non-subjective questions relayed through an image also qualify. </p>
http://stackoverflow.com/questions/116533/what-browser-is-best-for-testing-web-standards5What browser is best for testing web standards?Dustman2008-09-22T18:15:54Z2008-09-23T00:06:06Z
<p>When I build a site, I'd like to have at least one browser I can show it off in without any hacks or workarounds, and yet still retain maximum functionality. Knowing that none of the browsers have perfect standards adherence, which one comes closest?</p>
<p>Also, are there any standards areas in which a single browser seems to specialize? Opera, for instance, seems to be bent on adhering to all voice-related CSS standards.</p>
http://stackoverflow.com/questions/116947/what-is-the-semantic-web-and-why-would-i-want-to-use-it1What is the semantic web, and why would I want to use it?Dustman2008-09-22T19:24:32Z2008-09-22T20:02:02Z
<p>Just like it reads.</p>
http://stackoverflow.com/questions/112503/how-do-i-remove-objects-from-an-array-in-java/112507#1125073Answer by Dustman for How do I remove objects from an Array in java?Dustman2008-09-21T23:18:06Z2008-09-21T23:32:04Z<p>Make a <code>List</code> out of the array with <code>Arrays.asList()</code>, and call <code>remove()</code> on all the appropriate elements. Then call <code>toArray()</code> on the 'List' to make back into an array again.</p>
<p>Not terribly performant, but if you encapsulate it properly, you can always do something quicker later on.</p>
http://stackoverflow.com/questions/112358/what-are-some-good-web-resources-for-learning-object-oriented-programming/112399#1123990Answer by Dustman for What are some good web resources for learning Object-Oriented Programming?Dustman2008-09-21T22:39:18Z2008-09-21T22:39:18Z<p>Any of the "Thinking in..." Books from <a href="http://www.mindview.net" rel="nofollow">Bruce Eckle</a>, some of which are free to download in their entirety. Even though some are language specific, he's really good at laying out OO practices and guidelines. Just think of the language-specific parts of the book as examples.</p>
http://stackoverflow.com/questions/111933/why-shouldnt-i-use-hungarian-notation/111957#1119574Answer by Dustman for Why shouldn't I use "Hungarian Notation"?Dustman2008-09-21T20:13:46Z2008-09-21T21:44:07Z<p>I've always thought that a prefix or two in the right place wouldn't hurt. I think if I can impart something useful, like "Hey this is an interface, don't count on specific behaviour" right there, as in IEnumerable, I oughtta do it. Comment can clutter things up much more than just a one or two character symbol.</p>
http://stackoverflow.com/questions/112064/what-is-an-invariant3What is an invariant?Dustman2008-09-21T20:42:21Z2008-09-21T21:16:24Z
<p>The word seems to get used in a number of contexts. The best I can figure is that they mean a variable that can't change. Isn't that what constants/finals (darn you Java!) are for?</p>
http://stackoverflow.com/questions/111812/best-practice-for-naming-convention-of-ui-controls-for-referencing-in-code-behind/111929#1119290Answer by Dustman for Best practice for naming convention of UI controls for referencing in code-behind?Dustman2008-09-21T20:04:59Z2008-09-21T20:04:59Z<p>I've always felt that the only real reason for the prefixes was so you could have things like txtFirstName and lblFirstName on the same form/page. Since, the vast majority of the time, I'm really only working with the actual field control itself, I skip the prefix for that, and only use the prefixes for associated controls. For instance, lblMonth & Month, skipping the cbo prefix.</p>
<p>It saves typing, and it will generally be obvious what sort of control you're using in such forms. More complex controls will get the full prefix treatment.</p>
http://stackoverflow.com/questions/106586/what-are-the-principles-guiding-your-exception-handling-policy/106995#1069953Answer by Dustman for What are the principles guiding your exception handling policy?Dustman2008-09-20T03:38:46Z2008-09-20T03:38:46Z<p>This blog entry from Eric Lippert, a Senior Software Design Engineer at Microsoft, sums up an excellent and brief set of <a href="http://blogs.msdn.com/ericlippert/archive/2008/09/10/vexing-exceptions.aspx" rel="nofollow">exception strategy guidelines</a>.</p>
<p>In short: </p>
<ul>
<li><p><strong>Fatal</strong>: Terrible errors that indicate your process is totally unrecoverable. Clean up whatever resources you can, but don't catch them. If you're writing code that has the ability to detect such a situation, by all means, throw. Example : Out of memory exception.</p></li>
<li><p><strong>Boneheaded</strong>: Relatively simple errors that indicate your process can't operate on whatever data it's being handed, but would continue on normally if whatever situation caused the error is simply ignored. These are better known as bugs. Don't throw or catch them, but instead prevent them from happening, usually by passing errors or other meaningful indicators of failure that can be handled by your methods. Example: Null argument exception.</p></li>
<li><p><strong>Vexing</strong>: Relatively simple errors that code you don't own is throwing at you. You must catch all of these and deal with them, usually in the same way as you would deal with a <em>Boneheaded</em> exception of your own. Please don't throw them right back out again. Example: Format exception from C#'s <a href="http://msdn.microsoft.com/en-us/library/b3h1hf19.aspx" rel="nofollow">Int32.Parse()</a> method</p></li>
<li><p><strong>Exogenous</strong>: Relatively straightforward errors that look a lot like <em>Vexing</em> (from other people's code) or even <em>Boneheaded</em> (from your code) situations, but must be thrown because reality dictates that the code that's throwing them really has no idea how to recover, but the caller probably will. Go ahead and throw these, but when your code receives them from elsewhere, catch them and deal with them. Example: File not found exception.</p></li>
</ul>
<p>Of the four, the exogenous ones are the ones that you have to think about most to get right. An exception indicating a file is not found is appropriate to throw for an IO library method, in that the method almost certainly will not know what to do should the file not be found, especially given that the situation can occur at any time and that there is no way to detect whether or not the situation is transient. Throwing such an exception would not be appropriate for application-level code, though, because that application can get information from the user on how to proceed.</p>
http://stackoverflow.com/questions/1230281/how-can-i-rewrite-the-errormessage-for-a-customvalidator-control-on-the-client/1230699#1230699Comment by Dustman on How can I rewrite the ErrorMessage for a CustomValidator control on the client?Dustman2009-08-05T19:45:55Z2009-08-05T19:45:55ZA number of websites state that the "sender.errormessage" construct is the way to do this, so I suspect that I have done something wrong in the grander scheme of things that is preventing any of these methods from working. I guess I'll have to code up a test page and see if a simpler version doesn't act the way everyone seems to expect.http://stackoverflow.com/questions/1230281/how-can-i-rewrite-the-errormessage-for-a-customvalidator-control-on-the-client/1230699#1230699Comment by Dustman on How can I rewrite the ErrorMessage for a CustomValidator control on the client?Dustman2009-08-05T18:37:19Z2009-08-05T18:37:19ZTried that, but no. Digging around, I find that the sender is not the span element, but is instead some other DOM object that doesn't display anything. Thanks, though.http://stackoverflow.com/questions/1230281/how-can-i-rewrite-the-errormessage-for-a-customvalidator-control-on-the-client/1230856#1230856Comment by Dustman on How can I rewrite the ErrorMessage for a CustomValidator control on the client?Dustman2009-08-05T18:35:47Z2009-08-05T18:35:47ZThat is actually how I started out doing this, and that didn't work either. As it happens, the js sender.errormessage member does have the same content as the CustomValidator.ErrorMessage when the page first loads, but altering that content does not alter the displayed message.http://stackoverflow.com/questions/1230456/google-chrome-css-rendering-bugComment by Dustman on Google Chrome CSS/rendering bug?Dustman2009-08-05T00:11:28Z2009-08-05T00:11:28ZI see no difference between browsers.http://stackoverflow.com/questions/1229854/asp-net-problem-with-upload-on-production-server-but-not-in-devComment by Dustman on ASP.NET Problem with upload on production server but not in devDustman2009-08-04T23:06:29Z2009-08-04T23:06:29ZPrediction: we're looking for the name of a file or folder that doesn't yet exist on your production machine.http://stackoverflow.com/questions/116947/what-is-the-semantic-web-and-why-would-i-want-to-use-it/116955#116955Comment by Dustman on What is the semantic web, and why would I want to use it?Dustman2009-05-11T23:32:15Z2009-05-11T23:32:15ZWhen the questioner finds the Wiki-searchable explanation difficult to understand, yes. I found that the answer I accepted here immediately made the point clear, while the Wiki article (And it's quote) did not.http://stackoverflow.com/questions/675855/refreshing-div-cause-browse-to-redraw-it/675889#675889Comment by Dustman on Refreshing div (cause browse to redraw it)Dustman2009-03-24T03:41:17Z2009-03-24T03:41:17ZIndeed. The evils of hasLayout will be repealed in IE8 standards mode, we are assured.http://stackoverflow.com/questions/224569/server-transfer-vs-response-redirect/224577#224577Comment by Dustman on Server.Transfer Vs. Response.RedirectDustman2009-03-24T03:35:50Z2009-03-24T03:35:50ZAnd you even mention the HTTP Response Code. Awesome.http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c/96490#96490Comment by Dustman on Use of var keyword in C#Dustman2009-03-09T05:19:50Z2009-03-09T05:19:50ZThe C# team doesn't control intellisense, they control the compiler. In any event that's not the main issue. I don't think var would have made the 100 points on saving typing alone.http://stackoverflow.com/questions/267607/how-can-i-find-out-what-a-macro-does-without-exposing-myself-to-it/267653#267653Comment by Dustman on How can I find out what a macro does without exposing myself to it?Dustman2008-11-06T04:48:28Z2008-11-06T04:48:28ZThree assurances from SO that doing this is safe. How much safer can you get?http://stackoverflow.com/questions/209980/how-can-i-give-each-li-its-own-bullet-image/210174#210174Comment by Dustman on How can I give each <li> its own bullet image?Dustman2008-10-16T20:40:15Z2008-10-16T20:40:15ZGood thought, but, no Safari/Opera/IE do the same thing. Well, IE doesn't, it thoroughly borks the padding and margins, but that is a whole different story...http://stackoverflow.com/questions/209980/how-can-i-give-each-li-its-own-bullet-imageComment by Dustman on How can I give each <li> its own bullet image?Dustman2008-10-16T20:25:04Z2008-10-16T20:25:04ZOh, yeah, it works for that. I can change the disc, or inside/outside, at that shows up. just not the image, unless i inline it. I'm working on increasing the specificity to see if I can out-specify whatever it is without inlining the style.http://stackoverflow.com/questions/209980/how-can-i-give-each-li-its-own-bullet-image/209994#209994Comment by Dustman on How can I give each <li> its own bullet image?Dustman2008-10-16T20:09:51Z2008-10-16T20:09:51ZNo dice there. I tried removing that declaration too, but it doesn't seem to make a difference.http://stackoverflow.com/questions/209980/how-can-i-give-each-li-its-own-bullet-image/210013#210013Comment by Dustman on How can I give each <li> its own bullet image?Dustman2008-10-16T20:09:06Z2008-10-16T20:09:06ZNope, no good. Short and to the point, though. Thanks! :)http://stackoverflow.com/questions/209980/how-can-i-give-each-li-its-own-bullet-imageComment by Dustman on How can I give each <li> its own bullet image?Dustman2008-10-16T20:07:19Z2008-10-16T20:07:19ZYes I know where the images are, and confirmed that they work in other contexts. And I thought I was fairly specific in saying that what I needed was the li's bullets to work, and not put them into a background image. Perhaps I wasn't.