User Oded - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T18:48:59Z http://stackoverflow.com/feeds/user/1583 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1810640/css-wtf-form-button-not-horizontally-aligned-screwed-up-in-ff-but-ok-in-chrome/1810653#1810653 0 Answer by Oded for CSS WTF : form button not horizontally aligned (screwed up in FF but OK in Chrome) Oded 2009-11-27T21:15:04Z 2009-11-27T21:15:04Z <p>Make sure the button has no padding/margin:</p> <pre><code>style="height:40px;margin:0;padding:0" </code></pre> <p>Each browser does its own thing regarding padding and margin.</p> <p>Find out more about <a href="http://developer.yahoo.com/yui/reset/" rel="nofollow">reset CSS</a> and why/how to use them.</p> http://stackoverflow.com/questions/1810548/how-can-we-prevent-special-tag-inserted-into-textbox-in-asp-net/1810567#1810567 2 Answer by Oded for how can we prevent special tag inserted into textbox ? in asp.net Oded 2009-11-27T20:41:00Z 2009-11-27T21:09:39Z <p>There is a good reason for this behavior - to avoid <a href="http://en.wikipedia.org/wiki/Cross-site%5Fscripting" rel="nofollow">cross site scripting</a> attacks.</p> <p>It <em>can</em> be disabled by adding this to your web.config:</p> <pre><code>&lt;configuration&gt; &lt;system.web&gt; &lt;pages validateRequest="false" /&gt; &lt;/system.web&gt; &lt;/configuration&gt; </code></pre> <p>Read through <a href="http://www.asp.net/learn/whitepapers/request-validation/" rel="nofollow">this article</a> to find out why disabling request validation is a bad idea.</p> <p>As CodeMonkey noted, you can also do this on a single page basis in the @page directive:</p> <pre><code>&lt;%@ Page validateRequest="false" %&gt; </code></pre> <p>Which would be a better approach, by not exposing <strong>all</strong> of your pages to xss.</p> http://stackoverflow.com/questions/1764744/using-an-external-tool-for-c-builds-in-visual-studio/1810631#1810631 0 Answer by Oded for Using an external tool for C# builds in Visual Studio Oded 2009-11-27T21:05:58Z 2009-11-27T21:05:58Z <p>Edit your project file and update the CscToolPath keys to point to the directory containing your tool and add CscToolExe keys that holds the name of the directory:</p> <pre><code>&lt;PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|.NET 3.5' "&gt; . . . &lt;CscToolPath&gt;path\to\custom\tool\directory&lt;/CscToolPath&gt; &lt;CscToolExe&gt;path\to\custom\tool\directory&lt;/CscToolExe&gt; . . . &lt;/PropertyGroup&gt; </code></pre> <p>I have not tested this, and the CscToolExe key may cause problems, in which case I would simply rename the external tool executable to "csc.exe".</p> http://stackoverflow.com/questions/1808251/two-decisons-just-one-button/1810551#1810551 1 Answer by Oded for two decisons just one button Oded 2009-11-27T20:34:40Z 2009-11-27T20:34:40Z <p>The problem is with this line of code:</p> <pre><code>btnSearch.Attributes.Add("OnClick", "window.open('http://www.google.com/search?q=" + Regex.Replace(TextB.Text, " ", "+") + "','_blank');"); </code></pre> <p>You are adding a client side OnClick, that will open the search in a new window (the _blank target).</p> <p>If you do a:</p> <pre><code>Response.Redirect("http://www.google.com/search?q=" + TextB.Text); </code></pre> <p>Things will work as you expect.</p> http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill 281 What is the single most effective thing you did to improve your programming skills? Oded 2008-09-16T20:07:25Z 2009-11-23T16:59:21Z <p>Looking back at my career and life as a programmer, there were plenty of different ways I improved my programming skills - reading code, writing code, reading books, listening to podcasts, watching screencasts and more.</p> <p>My question is: What is the most effective thing you have done that improved your programming skills? What would you recommend to others that want to improve?</p> <p>I do expect varied answers here and no single "one size fits all" answer - I would like to know what worked for different people.</p> <p><b>Edit:</b> Wow - what great answers! Keep 'em coming people!!!</p> http://stackoverflow.com/questions/52764/xaml-to-svg 4 XAML to SVG? Oded 2008-09-09T19:59:10Z 2009-11-05T16:42:09Z <p>How would you go about converting XAML to SVG and vice versa?</p> <p>My initial approach it to use xslt to map the different elements and attributes, but I don't know enough about both syntaxes to even guess about the plausibility of such an approach.</p> http://stackoverflow.com/questions/43434/how-to-improve-problem-solving-skills 12 How to improve problem solving skills? Oded 2008-09-04T09:55:39Z 2009-10-26T08:02:19Z <p>I am always looking for ways to improve my programming skills, and one of the most important of those is problems solving. </p> <p>This <a href="http://beta.stackoverflow.com/questions/13289/can-you-share-your-secrets-or-best-practices-for-problem-solving" rel="nofollow">question</a> addresses some techniques people use for problem solving, but not as much how they aquires the skill and improve on it.</p> <p>One answer <a href="http://beta.stackoverflow.com/questions/13289/can-you-share-your-secrets-or-best-practices-for-problem-solving#13380" rel="nofollow">Links</a> to several books on the subject, which for me is one of the steps in getting there.</p> <p>What other books and techniques can you recommend for improving problem solving skills?</p> http://stackoverflow.com/questions/1584640/md5-code-kata-and-bdd 0 MD5 code kata and BDD Oded 2009-10-18T11:23:55Z 2009-10-20T03:09:12Z <p>I was thinking to implement MD5 as a code kata and wanted to use BDD to drive the design (I am a BDD newb).</p> <p>However, the only test I can think of starting with is to pass in an empty string, and the simplest thing that will work is embedding the hash in my program and returning that.</p> <p>The logical extension of this is that I end up embedding the hash in my solution for every test and switching on the input to decide what to return. Which of course will not result in a working MD5 program.</p> <p>One of my difficulties is that there should only be one public function:</p> <pre><code>public static string MD5(input byte[]) </code></pre> <p>And I don't see how to test the internals.</p> <p>Is my approach completely flawed or is MD5 unsuitable for BDD?</p> http://stackoverflow.com/questions/42648/best-way-to-get-identity-of-inserted-row 20 Best way to get identity of inserted row? Oded 2008-09-03T21:32:02Z 2009-10-09T20:35:00Z <p>What is the best way to get identity of inserted row?</p> <p>I know about @@IDENTITY and IDENT_CURRENT and SCOPE_IDENTITY but don't understand the pros and cons attached to each.</p> <p>Can someone please explain the differences and when I should be using each?</p> http://stackoverflow.com/questions/923319/what-is-an-objectmother 0 What is an ObjectMother? Oded 2009-05-28T21:35:24Z 2009-10-02T13:09:21Z <p>What is an ObjectMother and what are common usage scenarios for this pattern?</p> http://stackoverflow.com/questions/1508443/whats-the-main-problem-of-windows-porting-banshee/1508498#1508498 0 Answer by Oded for What's the main problem of Windows-porting Banshee? Oded 2009-10-02T09:13:48Z 2009-10-02T09:13:48Z <p>Not sure where you are getting your information from.</p> <p>Banshee is a C# 3.0 app and according to <a href="http://banshee-project.org/download/development/" rel="nofollow">this page</a>, "XP, Vista, Server 2003, etc should all work.".</p> http://stackoverflow.com/questions/1508462/asp-net-web-admin-tool-custom-database/1508484#1508484 1 Answer by Oded for asp.net web admin tool custom database Oded 2009-10-02T09:10:53Z 2009-10-02T09:10:53Z <p>At a guess, are any of the fields you have added defined as Not NULL and have no defaults?</p> <p>If so, make sure you populate them in the code that addes a user.</p> http://stackoverflow.com/questions/279190/how-can-i-get-a-collection-of-all-the-colors-in-system-drawing-color 3 How can I get a collection of all the colors in System.Drawing.Color? Oded 2008-11-10T21:10:06Z 2009-09-29T11:31:27Z <p>How can I extract the list of colors in the System.Drawing.Color struct into a collection or array?</p> <p>Is there a more efficient way of getting a collection of colors than using this struct as a base?</p> http://stackoverflow.com/questions/42466/msdn-subscriptions-on-the-cheap 16 MSDN subscriptions on the cheap? Oded 2008-09-03T20:11:32Z 2009-08-28T07:28:23Z <p>As a long time MS developer, I find MSDN to be an invaluable resource.</p> <p>However, when tinkering at home I am not able to play with the best latest technologies and the different offerings coming from Redmond as I cannot justify paying such a hefty price for what is essentially a pastime.</p> <p>The Express editions are great, but fall flat when trying to use the more advanced feature I am used to from the versions I use at work. I cannot get the latest betas and play with the new offerings, not legally, anyways.</p> <p>Apart from getting an MVP, how would one go about getting an MSDN subscription for an acceptable price for a non professional environment?</p> <p><strong>Edit:</strong> Yeah, I was aware of the Empower program, but was thought it was geared towards getting <em>commercial</em> software to market. If this is not the case, it appears like the way for me to go. Thanks!</p> http://stackoverflow.com/questions/48224/how-to-use-webclient-in-a-secure-site 5 How to use webclient in a secure site? Oded 2008-09-07T07:40:20Z 2009-08-15T01:28:07Z <p>I need to automate a process involving a website that is using a login form. I need to capture some data in the pages following the login page.</p> <p>I know how to screen-scrape normal pages, but not those behind a secure site.</p> <ol> <li>Can this be done with the .NET WebClient class? </li> <li>How would I automatically login?</li> <li>How would I keep logged in for the other pages?</li> </ol> http://stackoverflow.com/questions/1241138/how-to-remove-duplicate-entries-from-visual-studio-web-project 0 How to remove duplicate entries from visual studio web project? Oded 2009-08-06T20:14:16Z 2009-08-07T07:08:41Z <p>I am working in a large team with multiple branches and merges happening on a regular basis.</p> <p>One thing that happens on regular basis is that web project files end up with duplicate entries for static content (.js, favicon.ico etc...).</p> <p>I have two methods to removing the duplicates:</p> <ol> <li>Delete the item in the Project Explorer (which removes all entries as well as the on disk file), then get the file again from source control and add it back.</li> <li>Unload the project file, look for the duplicates, remove them (hoping they are located near one another) then reloading the project.</li> </ol> <p>Both are tedious and I am not satisfied with them - do you have a better/faster/quicker method?</p> http://stackoverflow.com/questions/1241138/how-to-remove-duplicate-entries-from-visual-studio-web-project/1243349#1243349 0 Answer by Oded for How to remove duplicate entries from visual studio web project? Oded 2009-08-07T07:08:41Z 2009-08-07T07:08:41Z <p>The easiest way is to simply right click on the duplicate and "Exclude from Project". When refresing the project, the duplicate will be gone.</p> http://stackoverflow.com/questions/1206788/puzzling-javascript-array-behavior/1224295#1224295 2 Answer by Oded for Puzzling javascript array behavior Oded 2009-08-03T19:54:29Z 2009-08-03T19:54:29Z <p>In the first instance, you are declaring selectedItems as an array and then assigning to it.</p> <p>In the second instance, you are assigning to it directly from the split method. </p> <p>I can only assume that VS takes the array declaration as a hint to display the length property.</p> http://stackoverflow.com/questions/1224198/what-causes-the-error-collection-was-modified-after-the-enumerator-was-instantia/1224213#1224213 5 Answer by Oded for What causes the error "Collection was modified after the enumerator was instantiated"? Oded 2009-08-03T19:35:46Z 2009-08-03T19:47:54Z <p>You cannot change a collection while iterating over it (i.e. in a foreach).</p> <p>So, adding or removing items from a collection while within the foreach block will cause this error.</p> <p>As an error in web.config it might be that you are adding a duplicate key that is defined elsewhere, or that you are trying to change the config dynamically in your code.</p> http://stackoverflow.com/questions/1219214/asp-net-authorization-what-does-the-and-mean/1219225#1219225 1 Answer by Oded for ASp.NET Authorization what does the * and ? mean? Oded 2009-08-02T16:33:11Z 2009-08-02T16:33:11Z <p>The * is a wildcard meaning "everyone", ? means anonymous users.</p> http://stackoverflow.com/questions/1217149/net-and-plugin-architectures/1217211#1217211 1 Answer by Oded for .Net and plugin architectures Oded 2009-08-01T18:46:28Z 2009-08-01T18:46:28Z <p>If you are looking for plug-ins libraries in .NET, there are a couple of options I am aware of:</p> <ul> <li>From Microsoft there is <a href="http://mef.codeplex.com/" rel="nofollow">MEF</a></li> <li>From Novell (Mono) there is <a href="http://www.mono-project.com/Mono.Addins" rel="nofollow">Mono.Addins</a></li> </ul> <p>Both are open source, so you can see how they went about creating a plug-in environment.</p> http://stackoverflow.com/questions/1196341/why-cant-this-reference-be-resolved/1196584#1196584 2 Answer by Oded for Why can't this reference be resolved? Oded 2009-07-28T20:38:36Z 2009-07-28T20:38:36Z <p>Is there a version of the assembly in the GAC or possibly on the $Path variable?</p> http://stackoverflow.com/questions/1195618/alternative-design-pattern-to-observer-for-net/1195637#1195637 5 Answer by Oded for Alternative design pattern to Observer for .Net Oded 2009-07-28T17:47:56Z 2009-07-28T17:47:56Z <p>Can't you implement it via events/delegates? This is the standard way to implement the Observer pattern in C# and other .Net languages.</p> http://stackoverflow.com/questions/1115698/how-to-compile-a-c-file-without-visual-studio/1115749#1115749 0 Answer by Oded for How to compile a C file without visual studio Oded 2009-07-12T10:31:34Z 2009-07-12T10:31:34Z <p>Lots of options out there. As mentioned by driis, there are lots of free c compilers available to download.</p> <p>If you just want to compile code on a machine that has visual studio on it, microsoft offers several tools that allow command line use and project management:</p> <ul> <li>Invoke the ide from the command line. You can use <a href="http://msdn.microsoft.com/en-us/library/xee0c8y7.aspx" rel="nofollow">devenv.exe</a>.</li> <li>Use <a href="http://msdn.microsoft.com/en-us/library/ms235639%28VS.90%29.aspx" rel="nofollow">cl.exe</a> directly (this is the c/c++ compiler and linker.</li> <li>Microsoft offer a make tool (similar to the unix one) called <a href="http://msdn.microsoft.com/en-us/library/dd9y37ha.aspx" rel="nofollow">NMake</a>. Use this with makefiles for project management, in conjunction with cl.exe.</li> </ul> <p>Microsoft have reference documents for <a href="http://msdn.microsoft.com/en-us/library/f35ctcxw.aspx" rel="nofollow">command line building</a>.</p> <p>Another options is <a href="http://monodevelop.com/" rel="nofollow">MonoDevelop</a> - an open source ide that understand visual studio project files.</p> http://stackoverflow.com/questions/1114549/conversion-failed-when-converting-datetime-from-character-string/1114566#1114566 1 Answer by Oded for Conversion failed when converting datetime from character string Oded 2009-07-11T20:30:16Z 2009-07-11T20:48:04Z <p>11/7/2009 is ambiguous - is that 11th of July or 7th of November?</p> <p>SQL has no way to tell - and it depends on the defaults it has been setup with. It would be better to pass in the date in an unambiguous format:</p> <pre><code>SELECT key FROM ubis WHERE MemberID = '144' AND To &gt;='11 July 2009 9:11:23 pm' AND From &lt;= '11 July 2009 9:11:23 pm' </code></pre> <p>Alternatively, use the correct conversion with the correct <a href="http://sql.dzone.com/news/custom-date-formatting-sql-ser" rel="nofollow">format code</a>, or a <a href="http://www.sql-server-helper.com/tips/date-formats.aspx" rel="nofollow">custom one</a>, as suggested by Zyphrax:</p> <pre><code>SELECT key FROM ubis WHERE MemberID = '144' AND To &gt;= CONVERT(datetime, '11/7/2009 9:11:23 pm', 105) AND From &lt;= CONVERT(datetime, '11/7/2009 9:11:23 pm', 105) </code></pre> http://stackoverflow.com/questions/1097331/enumerate-with-return-type-other-than-string/1097355#1097355 0 Answer by Oded for Enumerate with return type other than string? Oded 2009-07-08T10:55:13Z 2009-07-08T10:55:13Z <p>When confronted with this kind of problem I used structs with consts as public members:</p> <pre><code>public struct FileExtensions { public const string ProcessingExtension = ".lck"; public const string ProcessedExtension = ".xml"; public const string FailedExtension = ".failed"; public const string CsvExtension = ".csv"; } </code></pre> http://stackoverflow.com/questions/1085934/how-to-connect-ms-access-database-from-a-network-in-vb-net-2005/1085970#1085970 1 Answer by Oded for How to connect MS Access database from a network in vb.net 2005 Oded 2009-07-06T08:24:58Z 2009-07-06T08:24:58Z <p>Apart from the fact that Access really shouldn't be used as a shared DB, you should be able to use direct file access. UNC paths should be enough:</p> <pre><code>\\ServerName\path to .mdb </code></pre> http://stackoverflow.com/questions/1084543/blog-engines-for-asp-net-maybe-mvc-web-sites/1084558#1084558 2 Answer by Oded for Blog engines for ASP.Net (maybe MVC) web sites Oded 2009-07-05T18:15:07Z 2009-07-05T18:21:50Z <p><a href="http://hanselman.com/blog" rel="nofollow">Scott Hanselman</a> created <a href="http://www.dasblog.info/" rel="nofollow">DasBlog</a> - it was created with hosting in mind, so works under medium trust and doesn't use a DB.</p> <p>It is an WebForms app, not MVC, however. He runs his blog with it.</p> http://stackoverflow.com/questions/1067662/net-java-which-one-is-better/1067671#1067671 0 Answer by Oded for .Net & Java which one is better? Oded 2009-07-01T07:07:07Z 2009-07-01T07:07:07Z <p>Ha!</p> <p>Though I suspect this question to be flame bait, here is my take:</p> <p>Depends on so many things... what platforms are you supporting, what kind of software you are using.</p> <p>You may as well ask which one is better - a Ford Mustang or a Volkswagen Beetle.</p> http://stackoverflow.com/questions/997812/putting-date-in-front-of-xml-file-name/997840#997840 0 Answer by Oded for Putting date in front of xml file name Oded 2009-06-15T19:12:26Z 2009-06-15T19:12:26Z <p>Try something like this:</p> <pre><code>string filePath = string.Format("G:\\project\\{0}tester.xml", Date.Now.ToString("DDMM")); TextWriter WriteFileStream = new StreamWriter(filePath); </code></pre> http://stackoverflow.com/questions/1812159/in-asp-net-is-there-a-function-to-validate-an-email-address/1812162#1812162 Comment by Oded on In asp.net is there a function to validate an email address? Oded 2009-11-28T10:15:25Z 2009-11-28T10:15:25Z Ouch. Exception handling as flow control :( http://stackoverflow.com/questions/1810548/how-can-we-prevent-special-tag-inserted-into-textbox-in-asp-net/1810567#1810567 Comment by Oded on how can we prevent special tag inserted into textbox ? in asp.net Oded 2009-11-27T21:11:23Z 2009-11-27T21:11:23Z @CodeMonkey - added your refrain. Reduce the attack surface by only disabling a single page. http://stackoverflow.com/questions/1808251/two-decisons-just-one-button/1809457#1809457 Comment by Oded on two decisons just one button Oded 2009-11-27T18:29:27Z 2009-11-27T18:29:27Z a value attribute value=&quot;a&quot; for one button, value=&quot;b&quot; for the other. http://stackoverflow.com/questions/1580023/installing-a-self-developed-windows-service Comment by Oded on Installing a self-developed Windows Service Oded 2009-10-16T19:53:42Z 2009-10-16T19:53:42Z Does the user you are trying to install the service with have permissions to write to the Security event log? http://stackoverflow.com/questions/1498395/custom-event-logs-configuring-which-one-to-log-to/1501571#1501571 Comment by Oded on Custom event logs - configuring which one to log to? Oded 2009-10-01T05:23:29Z 2009-10-01T05:23:29Z If it were up to me, I would be using one of these as well, but I am not allowed. http://stackoverflow.com/questions/1224198/what-causes-the-error-collection-was-modified-after-the-enumerator-was-instantia/1224213#1224213 Comment by Oded on What causes the error "Collection was modified after the enumerator was instantiated"? Oded 2009-08-04T12:55:40Z 2009-08-04T12:55:40Z Are you writing anything into the config file? http://stackoverflow.com/questions/48224/how-to-use-webclient-in-a-secure-site/1211312#1211312 Comment by Oded on How to use webclient in a secure site? Oded 2009-07-31T11:15:07Z 2009-07-31T11:15:07Z Perhaps you should ask this as a new question, instead of an answer to an existinq question. http://stackoverflow.com/questions/1196341/why-cant-this-reference-be-resolved/1196584#1196584 Comment by Oded on Why can't this reference be resolved? Oded 2009-07-28T21:04:28Z 2009-07-28T21:04:28Z Take a look at the fusion (.NET binder) logs. This may give you an idea. http://stackoverflow.com/questions/1130682/open-source-net-wiki Comment by Oded on open source .Net wiki? Oded 2009-07-15T10:48:51Z 2009-07-15T10:48:51Z Not a programming question http://stackoverflow.com/questions/1116159/block-invalid-elements-xsd/1116214#1116214 Comment by Oded on block invalid elements XSD? Oded 2009-07-12T15:32:37Z 2009-07-12T15:32:37Z Visual studio will automatically validate XML when it knows about the schema. Chances are that NHibernate installs its schema into VS. You can see what schemas are being validated against when in an XML file by going to XML -&gt; Schemas (if memory serves). http://stackoverflow.com/questions/1114549/conversion-failed-when-converting-datetime-from-character-string/1114566#1114566 Comment by Oded on Conversion failed when converting datetime from character string Oded 2009-07-11T21:14:08Z 2009-07-11T21:14:08Z If your SQL server is setup for US dates, it will interpret the date as 7th of October. http://stackoverflow.com/questions/1097331/enumerate-with-return-type-other-than-string/1097355#1097355 Comment by Oded on Enumerate with return type other than string? Oded 2009-07-08T12:11:49Z 2009-07-08T12:11:49Z Because of the Value type semantics structs and enums share. http://stackoverflow.com/questions/1089196/selectsinglenode-returning-null-for-known-good-xml-node-path-using-xpath/1089210#1089210 Comment by Oded on SelectSingleNode returning null for known good xml node path using XPath Oded 2009-07-06T21:06:05Z 2009-07-06T21:06:05Z You can add namespaces when creating the xmldoc. http://stackoverflow.com/questions/1089196/selectsinglenode-returning-null-for-known-good-xml-node-path-using-xpath Comment by Oded on SelectSingleNode returning null for known good xml node path using XPath Oded 2009-07-06T21:04:27Z 2009-07-06T21:04:27Z First thing to check is if the XML document has been loaded correctly. I can see an empty xmlns attribute at the end of the root node - is that right? http://stackoverflow.com/questions/1034061/c-string-split Comment by Oded on C# string split Oded 2009-06-23T17:49:40Z 2009-06-23T17:49:40Z Not enough detail - if you supply further examples of strings and what you need to extract, a good general solution can be devised.