User Jakub Šturc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T10:46:14Zhttp://stackoverflow.com/feeds/user/2361http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1729726/what-are-the-possible-ways-to-prevent-form-from-double-posting-in-asp-net-mvc1What are the possible ways to prevent form from double posting in ASP.NET MVC?Jakub Šturc2009-11-13T14:57:47Z2009-11-13T15:24:25Z
<p>During a log inspection of my ASP.NET MVC application I discovered that some users managed to post same form twice. I tried to reproduce it but I failed. Anyway I'd like to prevent users from posting same data twice. Is there any canonical solution for that in ASP.NET MVC or I have to develop my own custom solution?</p>
<p>I case of custom solution I can imagine client side and server side solution. Can you recommend me anything in either case?</p>
http://stackoverflow.com/questions/1711153/help-with-query-if-was-column-copied-keep-original-out-of-select/1711273#17112731Answer by Jakub Šturc for Help with query: If was column copied, keep original out of select.Jakub Šturc2009-11-10T21:20:09Z2009-11-10T21:25:22Z<p>This is SQL but you can easily translate it to Linq.</p>
<pre><code>SELECT *
FROM Assets
WHERE user_id = @user_id
UNION ALL
SELECT * FROM Assets
WHERE
original_asset_id = 0
and asset_id NOT IN
(SELECT original_asset_id FROM Assets WHERE user_id = @user_id)
</code></pre>
<p>The first select returns all assets overridden by user. Second select returns all assets that are not overridden by user.</p>
http://stackoverflow.com/questions/1709894/c-switch-statement/1710047#17100473Answer by Jakub Šturc for C# switch statementJakub Šturc2009-11-10T18:15:51Z2009-11-10T18:15:51Z<p>I prefer to throw <a href="http://msdn.microsoft.com/en-us/library/system.notsupportedexception.aspx" rel="nofollow">NotSupportedException</a>.</p>
http://stackoverflow.com/questions/897293/how-to-debug-asp-permission-problems-with-wscript-shell-object0How to debug ASP permission problems with WScript.Shell object?Jakub Šturc2009-05-22T10:47:57Z2009-10-22T03:20:14Z
<p>I have to run command line operation from some legacy ASP application.</p>
<p>Here is my code:</p>
<pre><code><%
cmd = "%comspec% /c echo Hello"
set wsh = CreateObject("WScript.Shell")
ireturn = wsh.Run(cmd, 0, true)
set wsh = nothing
%>
</code></pre>
<p>And here is result I am receiving:</p>
<blockquote>
<p>Microsoft VBScript runtime error
'800a0046'</p>
<p>Permission denied</p>
<p>/test.asp, line 6</p>
</blockquote>
<p>Do you have any idea how to make IIS6 to run this code?</p>
<p><em>Note: Of course I don't have to run echo command but I want to exclude any additional causes of the problem.</em></p>
<p><em>Update: I tried most things tomalaks mention however nothing helped. Maybe I can alter question a little. <strong>How can I debug this problem?</em></strong></p>
http://stackoverflow.com/questions/54423/best-net-podcasts/54507#545074Answer by Jakub Šturc for Best .NET PodcastsJakub Šturc2008-09-10T15:57:17Z2009-10-11T21:19:16Z<p>Try the <a href="http://blog.stackoverflow.com/category/podcasts/" rel="nofollow">Stack Overflow podcast</a>. Not explicitly about .NET, however quite good :-)</p>
http://stackoverflow.com/questions/1544737/asp-net-mvc-application-running-ii6-with-wildcard-mapping-using-only-3-threads1ASP.NET MVC application running II6 with wildcard mapping using only 3 threadsJakub Šturc2009-10-09T16:13:32Z2009-10-10T14:45:39Z
<p>During the performance testing of our ASP.NET MVC application I discovered interesting bottle neck. <strong>The application is using only 3 managed threads</strong>.</p>
<ul>
<li>I checked maximum thread pool size. It's 200 and we are having 197 available threads. </li>
<li>I checked connection limit of web site and it's unlimited. </li>
<li>I tried to run stress test locally against Cassini and application used 50 threads.</li>
</ul>
<p>The application is running on dedicated virtual Windows Server 2003 Web Edition SP2 server with IIS6 with the wildcard mapping.</p>
<p>Do you have any idea what may be wrong?</p>
<p><hr /></p>
<p><strong>Edit</strong>: It's really weird. I tried it today and had about 20 threads which is reasonable count.</p>
http://stackoverflow.com/questions/343201/how-to-speed-up-sharepoint-development-in-virtual-pc1How to speed up sharepoint development in Virtual PC?Jakub Šturc2008-12-05T08:32:17Z2009-10-08T10:39:13Z
<p>I am developing sharepoint (MOSS) project in Virtual PC. Unfortunately virtual PC can utilize only one core of my quad core machine. Are there any tips & tricks which can speed my development process?</p>
http://stackoverflow.com/questions/1492829/how-to-disable-request-validation-in-asp-net-mvc-running-at-iis60How to disable request validation in ASP.NET MVC running at IIS6?Jakub Šturc2009-09-29T14:15:11Z2009-09-29T14:51:48Z
<p>I have ASP.NET MVC application with action which should process posted XML data. At Cassini is working everything fine but when I deploy application to IIS6 I am getting following error.</p>
<pre><code>A potentially dangerous Request.Form value was detected from the client (xml="<?xml version="1.0" ...").
</code></pre>
<p>I tried decorate controller with <code>ValidateInput(false)</code> attribute and I also add following method to controller.</p>
<pre><code>protected override void Initialize(RequestContext requestContext)
{
ValidateRequest = false;
base.Initialize(requestContext);
}
</code></pre>
<p>Nothing help.</p>
<p>Do you have any other idea how can I get rid off this annoying request validation? </p>
<p><strong>Edit</strong>: Sorry. I was totally my error as usual. After I setup wildcard mapping everything is working fine.</p>
http://stackoverflow.com/questions/9033/hidden-features-of-c/37926#379262Answer by Jakub Šturc for Hidden Features of C#?Jakub Šturc2008-09-01T13:21:10Z2009-09-12T21:10:40Z<p>The <a href="http://msdn.microsoft.com/en-us/library/ms173212.aspx" rel="nofollow">extern alias</a> keyword to reference two versions of assemblies that have the same fully-qualified type names.</p>
http://stackoverflow.com/questions/9033/hidden-features-of-c/59691#5969119Answer by Jakub Šturc for Hidden Features of C#?Jakub Šturc2008-09-12T18:24:24Z2009-09-12T20:39:24Z<p>The <a href="http://msdn.microsoft.com/en-us/library/x13ttww7.aspx" rel="nofollow">volatile</a> keyword to tell to the compiler that field can be modified by multiple threads concurrently.</p>
http://stackoverflow.com/questions/1406440/md5-and-sequential-number0MD5 and sequential numberJakub Šturc2009-09-10T16:50:59Z2009-09-11T06:44:54Z
<p>I have some sequential id which can be easily guessed. If some want to see data related to this id he has to prove his access by token I gave him before.</p>
<pre><code>token = md5(secret_key + md5(id))
</code></pre>
<p>Is MD5 good enough for this job?</p>
http://stackoverflow.com/questions/67561/do-fluent-interfaces-violate-the-law-of-demeter16Do fluent interfaces violate the Law of Demeter?Jakub Šturc2008-09-15T22:16:52Z2009-09-11T03:28:40Z
<p>The <a href="http://en.wikipedia.org/wiki/Law%5FOf%5FDemeter" rel="nofollow">wikipedia article</a> about <a href="http://c2.com/cgi/wiki?LawOfDemeter" rel="nofollow">Law of Demeter</a> says:</p>
<blockquote>
<p>The law can be stated simply as "use only one dot".</p>
</blockquote>
<p>However a <a href="http://weblogs.asp.net/jgalloway/archive/2006/12/06/a-simple-example-of-a-fluent-interface.aspx" rel="nofollow">simple example</a> of a <a href="http://en.wikipedia.org/wiki/Fluent%5Finterface" rel="nofollow">fluent interface</a> may look like this:</p>
<pre><code>static void Main(string[] args)
{
new ZRLabs.Yael.Pipeline("cat.jpg")
.Rotate(90)
.Watermark("Monkey")
.RoundCorners(100, Color.Bisque)
.Save("test.png");
}
</code></pre>
<p>So does this goes together?</p>
http://stackoverflow.com/questions/49564/how-to-implement-file-upload-progress-bar-on-web7How to implement file upload progress bar on web?Jakub Šturc2008-09-08T12:24:25Z2009-08-28T14:12:52Z
<p>I would like display something more meaningful that animated gif while users upload file to my web application. What possibilities do I have? </p>
<p><em>Edit: I am using .Net but I don't mind if somebody shows me platform agnostic version.</em></p>
http://stackoverflow.com/questions/1324102/net-xml-serialization-in-20091.NET XML serialization in 2009 [closed]Jakub Šturc2009-08-24T19:00:58Z2009-08-24T19:22:23Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/1186743/replacement-for-xml-serialization">Replacement for XML Serialization</a> </p>
</blockquote>
<p>Is something new besides <a href="http://msdn.microsoft.com/en-us/library/system.xml.serialization.xmlserializer.aspx" rel="nofollow">old XmlSerializer</a> on the world of xml serialization in .Net universe?</p>
<p><strong>Update:</strong> This is probably duplicate of <a href="http://stackoverflow.com/questions/1186743/replacement-for-xml-serialization">better asked question</a>.</p>
http://stackoverflow.com/questions/1307814/should-web-pages-look-same-in-different-browsers2Should web pages look same in different browsers?Jakub Šturc2009-08-20T17:53:04Z2009-08-21T01:48:00Z
<p>There is a common fetish in web designer world that all pages should look pixel by pixel same in all browsers. I doubt if there is any good in this practice. People are different and they have different needs. There is no single the best <a href="http://www.codinghorror.com/blog/archives/000885.html" rel="nofollow">font rendering</a> and there is no ideal one size fit all font size. So I believe that web should be written in such way that it respects all individual needs of its users.</p>
<p><strong>Is there any web design technique which emphasize individual user needs?</strong></p>
<p><em>I am no sure if I write this question clearly and I understand that this isn't programming question so I will also appreciate answers pointing me to another forum where this things are discussed.</em></p>
http://stackoverflow.com/questions/1244905/renaming-files-with-visual-studio-and-tortoisesvn3Renaming files with Visual Studio and TortoiseSVNJakub Šturc2009-08-07T14:07:08Z2009-08-07T14:39:13Z
<p>I am using Visual Studio for editing source code and once a while I switch to Windows Explorer to commit changes with TortoiseSVN. This procedure works well for me and I am quite happy with it. However recently I started to rename classes and reorganize namespaces a lot. I like to rename and move files in Visual Studio because it automatically update project file for me. However when I commit changes I have to tell to TortoiseSVN that old files was deleted and new files was added what isn't quite true and it breaks history of particular code.</p>
<p>So my question is: <strong>When I rename file in Visual Stuido is there any way to tell TortoiseSVN that I did that to prevent file history?</strong></p>
<p><hr /></p>
<p><strong>Update (16:30):</strong>
Ankhsvn seems to be obvious answer but I like thing as they are now. It sounds weird but I like TortoiseSVN not being integrated in Visual Studio. This is maybe because of my two monitor setup when I have always opened file manager on my secondary monitor. May because I found Solution Explorer little clunky. Maybe because I like to think about code editing and revision control as separate steps of software development. I don't know.</p>
http://stackoverflow.com/questions/188870/how-to-use-c-to-sanitize-input-on-an-html-page/188951#1889511Answer by Jakub Šturc for How to use C# to sanitize input on an html page?Jakub Šturc2008-10-09T19:58:12Z2009-06-25T07:34:47Z<p>You are looking for <a href="http://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex.aspx" rel="nofollow">RegEx</a> class and for pattern like this <code><(.|\n)*?></code>.</p>
<p>You can <a href="http://blogs.msdn.com/ericgu/archive/2005/11/23/496274.aspx" rel="nofollow">find</a> a <a href="http://lists.evolt.org/archive/Week-of-Mon-20020701/116992.html" rel="nofollow">lot</a> of <a href="http://weblogs.asp.net/rosherove/archive/2003/05/13/6963.aspx" rel="nofollow">examles</a> on <a href="http://www.google.com/search?q=regex%2Bfor%2Bstriping%2Bhtml" rel="nofollow">google</a>.</p>
http://stackoverflow.com/questions/1037855/whats-the-correct-response-to-unauthorized-http-request1What's the correct response to unauthorized HTTP request?Jakub Šturc2009-06-24T11:46:58Z2009-06-24T12:23:55Z
<p>I am writing web application I am not sure what is the correct response to unauthorized request. For user it is convenient when server response with 302 and redirects him to login page. However somewhere deep inside I feel that 401 is more correct. I am also little afraid if the 302 cannot be misinterpreted by search engines. </p>
<p>So how do you response to your unauthorized requests?</p>
<p><hr /></p>
<h3>Edit</h3>
<p>I am using ASP.NET MVC. This is not important from theoretical point of view. However ASP.NET form authentication use 302 approach.</p>
<p>I also like the behavior when user is redirected after successful login to the page he was requested. I am not sure if this can be implemented with 401 approach easily. </p>
http://stackoverflow.com/questions/1017613/code-header-for-proprietary-code3Code header for proprietary codeJakub Šturc2009-06-19T12:09:15Z2009-06-19T12:51:34Z
<p>We need to send some source codes outside of the company and I have to add header to each file with notice which explicitly state that source code is our property and nobody is allowed to do anything with it.</p>
<p>Do you know any header templates which I can use?</p>
http://stackoverflow.com/questions/62353/what-are-the-best-practices-for-using-assembly-attributes17What are the best practices for using Assembly Attributes?Jakub Šturc2008-09-15T12:31:11Z2009-06-12T11:37:24Z
<p>I have a solution with multiple project. I am trying to optimize AssemblyInfo.cs files by linking one solution wide assembly info file. What are the best practices for doing this? Which attributes should be in solution wide file and which are project/assembly specific?</p>
<p><hr /></p>
<p><em>Edit: If you are interested there is a follow up question <a href="http://stackoverflow.com/questions/64602/what-are-differences-between-assemblyversion-assemblyfileversion-and-assemblyin">What are differences between AssemblyVersion, AssemblyFileVersion and AssemblyInformationalVersion?</a></em></p>
http://stackoverflow.com/questions/943592/static-method-or-oo-alternative/943617#943617-1Answer by Jakub Šturc for Static Method or OO Alternative?Jakub Šturc2009-06-03T08:20:30Z2009-06-03T08:20:30Z<p>You can also implement <a href="http://en.wikipedia.org/wiki/Abstract%5Ffactory%5Fpattern" rel="nofollow">Abstract factory pattern</a> and configure factories with your settings. Or you can alternatively use <a href="http://www.hanselman.com/blog/ListOfNETDependencyInjectionContainersIOC.aspx" rel="nofollow">IoC</a> for <a href="http://en.wikipedia.org/wiki/Dependency%5Finjection" rel="nofollow">injecting dependency</a> into this factory classes.</p>
<p>Simple Factory class for Preson can look following:</p>
<pre><code>public class PersonFactory
{
private readonly ISettings settings;
public PersonFactory(ISettings settings)
{
this.settings = settings;
}
public Person Create()
{
Person p = new Person();
// ... you code for populating person's attributes form settings.
return p;
}
}
</code></pre>
http://stackoverflow.com/questions/940062/how-to-force-stringtemplate-to-evaluate-attribute-within-attribute0How to force StringTemplate to evaluate attribute within attribute?Jakub Šturc2009-06-02T15:03:33Z2009-06-02T15:12:49Z
<p>I have the following code:</p>
<pre><code>StringTemplate st = new StringTemplate("$msg$");
st.SetAttribute("msg", "Hello $usr$");
st.SetAttribute("usr", "Jakub");
Console.WriteLine(st);
// current output: "Hello $usr$"
// expected output: "Hello Jakub"
</code></pre>
<p>Do anybody know how to force <a href="http://www.stringtemplate.org/" rel="nofollow">StringTemplate</a> to evaluate <code>$usr$</code> attribute?</p>
http://stackoverflow.com/questions/940062/how-to-force-stringtemplate-to-evaluate-attribute-within-attribute/940125#9401250Answer by Jakub Šturc for How to force StringTemplate to evaluate attribute within attribute?Jakub Šturc2009-06-02T15:12:10Z2009-06-02T15:12:10Z<p>The correct solution should look following.</p>
<pre><code>StringTemplate st = new StringTemplate("$msg$");
st.SetAttribute("msg", new StringTemplate("Hello $usr$"));
st.SetAttribute("usr", "Jakub");
Console.WriteLine(st);
// current output: "Hello Jakub"
// expected output: "Hello Jakub"
</code></pre>
<p>Next time I'll rtfm twice before asking. I promise :-)</p>
http://stackoverflow.com/questions/928053/asp-net-mvc-switch-language-how-to-implement/930327#9303271Answer by Jakub Šturc for ASP.NET MVC switch language, how to implement?Jakub Šturc2009-05-30T18:52:28Z2009-05-30T18:52:28Z<p><a href="http://stackoverflow.com/questions/660872/asp-net-mvc-localization/661126#661126">Here is</a> simple solution how to enable selecting different in URL.</p>
http://stackoverflow.com/questions/909794/how-to-change-default-view-location-scheme-in-asp-net-mvc1How to change default view location scheme in ASP.NET MVC?Jakub Šturc2009-05-26T09:28:24Z2009-05-27T21:31:41Z
<p>I want to change view locations at runtime based on current UI culture. How can I achieve this with default Web Form view engine?</p>
<p>Basically I want to know how implement with <code>WebFromViewEngine</code> something what is <a href="http://sparkviewengine.com/documentation/viewlocations#CustomIDescriptorFilterimplementations" rel="nofollow">custom IDescriptorFilter</a> in <a href="http://sparkviewengine.com/" rel="nofollow">Spark</a>.</p>
<p>Is there other view engine which gives me runtime control over view locations?</p>
<p><hr /></p>
<p><strong>Edit:</strong> My URLs should looks following <code>{lang}/{controller}/{action}/{id}</code>. I don't need language dependent controllers and views are localized with resources. However few of the views will be different in some languages. So I need to tell view engine to looks to the language specific folder first.</p>
http://stackoverflow.com/questions/127318/is-there-any-sed-like-utility-for-cmd-exe4Is there any sed like utility for cmd.exeJakub Šturc2008-09-24T14:01:42Z2009-05-27T16:27:54Z
<p>I want to programmatically edit file content using windows command line (<a href="http://en.wikipedia.org/wiki/Windows%5Fcommand%5Fline" rel="nofollow">cmd.exe</a>). In *nix there is <a href="http://en.wikipedia.org/wiki/Sed" rel="nofollow">sed</a> for this tasks. Is there any usefull equivalent in windows?</p>
<p><em>Edit: I am looking for native command line solution.</em></p>
http://stackoverflow.com/questions/892007/how-to-add-code-beside-to-asp-net-mvc-view-in-visual-studio0How to add code beside to ASP.NET MVC view in Visual Studio?Jakub Šturc2009-05-21T09:06:13Z2009-05-27T15:46:25Z
<p>I want to use code beside files for my views in my ASP.NET MVC project. Is there any simple way in Visual Studion 2008 how to add a code beside file to the view?</p>
<p><em>Note: I know that code besides files are no preferred in ASP.NET MVC but my reason is that I want to give .aspx files to designer and don't want to confuse him nonHTML code as little as possible. More good reasons for doing that can be found <a href="http://stackoverflow.com/questions/108320/code-behind-in-asp-net-mvc/527189#527189">here</a>.</em></p>
http://stackoverflow.com/questions/916224/decimal-value-check-if-zero/916244#9162449Answer by Jakub Šturc for Decimal Value Check if ZeroJakub Šturc2009-05-27T14:59:25Z2009-05-27T14:59:25Z<p>By using ?: operator </p>
<pre><code>return (divisor == 0) ? divident : divident / divisor
</code></pre>
http://stackoverflow.com/questions/632964/can-i-specify-a-custom-location-to-search-for-views-in-asp-net-mvc/909547#9095470Answer by Jakub Šturc for Can I specify a custom location to "search for views" in ASP.NET MVC?Jakub Šturc2009-05-26T08:16:15Z2009-05-26T08:16:15Z<p>May be <a href="http://haacked.com/archive/2008/11/04/areas-in-aspnetmvc.aspx" rel="nofollow">Phil Haacks article about areas</a> may help.</p>
http://stackoverflow.com/questions/898341/best-way-to-do-a-split-and-convert-the-result-into-ints/898362#8983621Answer by Jakub Šturc for Best way to do a split and convert the result into intsJakub Šturc2009-05-22T15:05:56Z2009-05-22T15:05:56Z<p>With LINQ you can do this:</p>
<pre><code>List<int> ids
= expression
.Split(separators)
.Select(number => Convert.ToInt32(number))
.ToList()
</code></pre>
http://stackoverflow.com/questions/1729726/what-are-the-possible-ways-to-prevent-form-from-double-posting-in-asp-net-mvc/1729737#1729737Comment by Jakub Šturc on What are the possible ways to prevent form from double posting in ASP.NET MVC?Jakub Šturc2009-11-13T16:15:25Z2009-11-13T16:15:25Z@Robert: I tested this at production environment. I am suspicious that only IE6 and IE7 are capable of doing this. Anyway how it's happen is only important to avoid it in future.http://stackoverflow.com/questions/1729726/what-are-the-possible-ways-to-prevent-form-from-double-posting-in-asp-net-mvc/1729771#1729771Comment by Jakub Šturc on What are the possible ways to prevent form from double posting in ASP.NET MVC?Jakub Šturc2009-11-13T16:03:50Z2009-11-13T16:03:50Z@Robert: No. You was suggested that at #2 you would save the values from the second post. I think that in many cases it's what user expected to happen however in some cases this isn't option.http://stackoverflow.com/questions/1729726/what-are-the-possible-ways-to-prevent-form-from-double-posting-in-asp-net-mvc/1729771#1729771Comment by Jakub Šturc on What are the possible ways to prevent form from double posting in ASP.NET MVC?Jakub Šturc2009-11-13T15:31:14Z2009-11-13T15:31:14Z@Robert: overriding the first post ins't always option but surely is something that should be consideredhttp://stackoverflow.com/questions/1729726/what-are-the-possible-ways-to-prevent-form-from-double-posting-in-asp-net-mvc/1729737#1729737Comment by Jakub Šturc on What are the possible ways to prevent form from double posting in ASP.NET MVC?Jakub Šturc2009-11-13T15:26:49Z2009-11-13T15:26:49ZI'll like this solution however this doesn't apply in some weird back button scenarios. (BTW: in my particular case I cannot reproduce double posting even with back button)http://stackoverflow.com/questions/1729726/what-are-the-possible-ways-to-prevent-form-from-double-posting-in-asp-net-mvc/1729803#1729803Comment by Jakub Šturc on What are the possible ways to prevent form from double posting in ASP.NET MVC?Jakub Šturc2009-11-13T15:21:44Z2009-11-13T15:21:44ZBTW althought I am using Post-Redirect-Get pattern in many cases I always feel bad about additional request which hurts performance.http://stackoverflow.com/questions/1729726/what-are-the-possible-ways-to-prevent-form-from-double-posting-in-asp-net-mvcComment by Jakub Šturc on What are the possible ways to prevent form from double posting in ASP.NET MVC?Jakub Šturc2009-11-13T15:12:36Z2009-11-13T15:12:36Z@Robert Koritnik: good tip. Unfortunately the site at which it happens use post-redirect-get pattern.http://stackoverflow.com/questions/1711153/help-with-query-if-was-column-copied-keep-original-out-of-select/1711273#1711273Comment by Jakub Šturc on Help with query: If was column copied, keep original out of select.Jakub Šturc2009-11-10T21:41:37Z2009-11-10T21:41:37ZI wouldn't phrase it like this. But basically yes.http://stackoverflow.com/questions/1711153/help-with-query-if-was-column-copied-keep-original-out-of-selectComment by Jakub Šturc on Help with query: If was column copied, keep original out of select.Jakub Šturc2009-11-10T21:35:05Z2009-11-10T21:35:05ZCan be asset two (id 12) also overridden? If yes, it looks like transitive closure than cannot be expressed in SQL.http://stackoverflow.com/questions/1711153/help-with-query-if-was-column-copied-keep-original-out-of-select/1711273#1711273Comment by Jakub Šturc on Help with query: If was column copied, keep original out of select.Jakub Šturc2009-11-10T21:30:56Z2009-11-10T21:30:56Z@Ryan: sorry I am little confused. Maybe you should provide table structure to clarify this.http://stackoverflow.com/questions/1711153/help-with-query-if-was-column-copied-keep-original-out-of-select/1711210#1711210Comment by Jakub Šturc on Help with query: If was column copied, keep original out of select.Jakub Šturc2009-11-10T21:12:52Z2009-11-10T21:12:52ZIt returns empty result if user haven't override default assets. I believe in this case it should return default assests.http://stackoverflow.com/questions/256039/what-are-good-places-for-an-american-programmer-to-live-work-abroad/285935#285935Comment by Jakub Šturc on What are good places for an American programmer to live / work abroad?Jakub Šturc2009-11-10T17:30:46Z2009-11-10T17:30:46Z@SeanM: Decent beer? Are you joking? Czech beer is great and cheap. http://stackoverflow.com/questions/256039/what-are-good-places-for-an-american-programmer-to-live-work-abroad/285935#285935Comment by Jakub Šturc on What are good places for an American programmer to live / work abroad?Jakub Šturc2009-11-10T17:30:03Z2009-11-10T17:30:03Z@User: In Prague for programmers salary 1100€ is bellow the average.http://stackoverflow.com/questions/1544737/asp-net-mvc-application-running-ii6-with-wildcard-mapping-using-only-3-threads/1544781#1544781Comment by Jakub Šturc on ASP.NET MVC application running II6 with wildcard mapping using only 3 threadsJakub Šturc2009-10-10T14:48:01Z2009-10-10T14:48:01ZI am not sure if it help because problem disappeared but at least it's interesting reading.http://stackoverflow.com/questions/1543186/how-to-access-maxconnection-value-from-code-in-asp-net/1543228#1543228Comment by Jakub Šturc on How to access maxconnection value from code in ASP.NET?Jakub Šturc2009-10-09T11:42:43Z2009-10-09T11:42:43ZAre you sure that this is accurate? I am getting 1 regardless what value is in the configuration.http://stackoverflow.com/questions/1492829/how-to-disable-request-validation-in-asp-net-mvc-running-at-iis6/1492874#1492874Comment by Jakub Šturc on How to disable request validation in ASP.NET MVC running at IIS6?Jakub Šturc2009-09-29T14:27:43Z2009-09-29T14:27:43ZYes it is a post request that triggers this problem. I also tried to add AcceptVerbs(HttpVerbs.Post) and ValidateInput(false) to particular method but it seems it has now effect at IIS6.