User Martin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T15:19:18Z http://stackoverflow.com/feeds/user/19635 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1843784/optimizing-viewstate/1852270#1852270 1 Answer by Martin for Optimizing ViewState Martin 2009-12-05T14:00:19Z 2009-12-05T14:00:19Z <p>Here are some ideas how you can optimize the size of ViewState transferred over the wire (<a href="http://stackoverflow.com/questions/1547532/how-to-minimize-viewstate-size-of-a-page-in-asp-net/1547606#1547606">copied from this answer</a>):</p> <ul> <li><strong>Disable ViewState</strong> for controls that do not need it (this is the most effective solution). E.g. if you can cache some data on the server, then you can re-bind any databound controls with every request and it's not needed to save everything in ViewState.</li> <li><strong>Turn on HTTP compression on the server (IIS)</strong>. This reduces the size of the page sent to the client, including the ViewState.</li> <li><strong>Compress the ViewState</strong>. This has an additional advantage over HTTP compression: it also reduces the size of PostBacks (data sent back to the server), since the ViewState is always sent back to the server during a PostBack. There are various approaches for this, e.g. as shown in <a href="http://aspadvice.com/blogs/mamanzes%5Fblog/archive/2006/08/27/Save-some-space%5F2C00%5F-compress-that-ViewState.aspx" rel="nofollow">this blog post</a>.</li> <li><strong>Store the ViewState on the server</strong> instead of sending it in a hidden field with the page. The easiest way to do this is to use the <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.sessionpagestatepersister.aspx" rel="nofollow">SesionPageStatePersister</a>, but there are other solutions which store the ViewState to disk instead of using the Session (<a href="http://aspalliance.com/911%5FStore%5FView%5FState%5Fin%5Fa%5FPersistent%5FMedium%5Fthe%5FProper%5FWay.1" rel="nofollow">see here for example</a>). </li> </ul> http://stackoverflow.com/questions/1536660/jquery-click-event-handler-is-called-twice-for-a-checkbox 0 jquery click event handler is called twice for a checkbox Martin 2009-10-08T09:27:51Z 2009-12-04T12:21:00Z <p>I have a problem with the following code in an ASPX page:</p> <pre><code>&lt;script type="text/javascript"&gt; $(document).ready(function() { $('.test').click(function() { alert("click") }) }); &lt;/script&gt; &lt;asp:CheckBox runat="server" Text="Checkbox XYZ" CssClass="test" ID="cb1" /&gt; </code></pre> <p>In the browser (FF3.5 / IE8) I have the following problem:</p> <ul> <li>if I click the checkbox (the small square), it works as expected</li> <li>if I click the checkbox's text ("Checkbox XYZ"), then the click event is fired twice, and the alert is shown twice</li> </ul> <p>I guess this has to do with the way the checkbox is rendered to HTML, which is like this:</p> <pre><code>&lt;span class="test"&gt; &lt;input id="ctl00_c1_cb1" type="checkbox" name="ctl00$c1$cb1" checked="checked" /&gt; &lt;label for="ctl00_c1_cb1"&gt;Checkbox XYZ&lt;/label&gt; &lt;/span&gt; </code></pre> <p>How do I correctly setup the click event handler to prevent it from being called twice?</p> http://stackoverflow.com/questions/1639824/differences-between-ioc-containers 2 differences between IoC containers Martin 2009-10-28T20:12:51Z 2009-12-02T16:50:18Z <p>I'm looking for some guidance about how to chose an IoC container for an ASP.NET MVC application.</p> <p>What are the differences between (for example) StructureMap, Ninject, Castle Windsor, Unity, autofac and others? Can anyone give some hints or links to resource that might help chosing one library?</p> <p><strong>Update</strong>: there is one question (<a href="http://stackoverflow.com/questions/411660/enterprise-library-unity-vs-other-ioc-containers">http://stackoverflow.com/questions/411660/enterprise-library-unity-vs-other-ioc-containers</a>) which talks about the differences in the initialization of the IoC containers.</p> <p>But are there any differences in functionality, which would make some IoC containers a better choice for an ASP.NET MVC application?</p> http://stackoverflow.com/questions/1829106/asp-net-control-property-with-flags-enum/1829229#1829229 1 Answer by Martin for ASP.NET control property with [Flags] enum Martin 2009-12-01T21:58:34Z 2009-12-01T21:58:34Z <p>Maybe I'm understanding the question wrong, but can't you set the enum value with a comma-separated string.</p> <p>E.g. if I have this property in my control:</p> <pre><code>public System.IO.FileOptions Options { get; set; } </code></pre> <p>The I can set it in the markup like this:</p> <pre><code>&lt;uc1:MyControl ID="control1" runat="server" Options="DeleteOnClose,Asynchronous" /&gt; </code></pre> http://stackoverflow.com/questions/411316/how-to-access-properties-of-a-usercontrol-in-c/411332#411332 12 Answer by Martin for How to access properties of a usercontrol in C# Martin 2009-01-04T17:28:45Z 2009-11-24T19:15:02Z <p>Cleanest way is to expose the desired properties as properties of your usercontrol, e.g:</p> <pre><code>class MyUserControl { // expose the Text of the richtext control (read-only) public string TextOfRichTextBox { get { return richTextBox.Text; } } // expose the Checked Property of a checkbox (read/write) public bool CheckBoxProperty { get { return checkBox.Checked; } set { checkBox.Checked = value; } } //... } </code></pre> <p>In this way you can control which properties you want to expose and whether they should be read/write or read-only. (of course you should use better names for the properties, depending on their meaning).</p> <p>Another advantage of this approach is that it hides the internal implementation of your user control. Should you ever want to exchange your richtext control with a different one, you won't break the callers/users of your control.</p> http://stackoverflow.com/questions/1602642/what-is-the-value-of-atomic-commits-in-subversion/1602658#1602658 10 Answer by Martin for What is the value of atomic commits in Subversion? Martin 2009-10-21T18:23:45Z 2009-11-24T12:53:22Z <p>There is no special command for atomic commits. Every commit in subversion is atomic.</p> <p>What this means is, that every commit (of any number of files) will either succeed or fail as a whole.<br> It's not possible that only some of the commited files make it to the repository and others not (e.g. because of an error that occurred in the middle of the commit operation or a conflict in one of the files).</p> <p>This is the same for TortoiseSVN, since it builds on the "normal" subversion functionality.</p> <p><hr></p> <p>The following is an excerpt from the <a href="http://svnbook.red-bean.com/en/1.5/svn.basic.in-action.html" rel="nofollow">subversion book</a>:</p> <blockquote> <p>An svn commit operation publishes changes to any number of files and directories as a single atomic transaction. In your working copy, you can change files' contents; create, delete, rename, and copy files and directories; and then commit a complete set of changes as an atomic transaction.</p> <p>By atomic transaction, we mean simply this: either all of the changes happen in the repository, or none of them happens. Subversion tries to retain this atomicity in the face of program crashes, system crashes, network problems, and other users' actions.</p> </blockquote> http://stackoverflow.com/questions/1759591/recommended-asp-net-grid-and-ui-tools/1759697#1759697 0 Answer by Martin for Recommended ASP.NET Grid and UI tools Martin 2009-11-18T22:47:02Z 2009-11-18T22:47:02Z <p>I can't comment on the DevExpress control, but as you were also asking for alternatives:</p> <p>I was mainly using <a href="http://www.telerik.com/products/aspnet-ajax.aspx" rel="nofollow">Telerik RadControls for ASP.NET Ajax</a> in the past. This is a full suite of controls with many controls (have a look at the <a href="http://demos.telerik.com/aspnet-ajax/controls/examples/default/defaultcs.aspx" rel="nofollow">demos</a> to get an idea). I think these controls are quite powerful, although you'll need to consult the documentation to take advantage of all the features. In addition, I'd like to point out that telerik offers great support (in my experience).</p> http://stackoverflow.com/questions/1707473/what-is-best-book-for-asp-net-mvc/1707508#1707508 9 Answer by Martin for What is best book for ASP.NET MVC? Martin 2009-11-10T12:10:59Z 2009-11-10T12:49:36Z <p>I really like <a href="http://rads.stackoverflow.com/amzn/click/1430210079" rel="nofollow">Pro ASP.NET MVC Framework</a> by Steven Sanderson.</p> <p>The book gives a quick introduction into ASP.NET MVC, so that you can start coding and experimenting after a short time. Each part of ASP.NET MVC is then discussed in detail in the later chapters of the book, so once you "got" the basics you can move on to the details. I really liked that approach.</p> <p>Also, if you're interested in Test-Driven Development (TDD), the book covers that very nicely. Although, if you're only interested in MVC, you can easily skip the TDD parts (they are very well separated from the normal book text).</p> http://stackoverflow.com/questions/1682986/how-do-i-get-the-exception-to-come-up-at-the-source-of-the-exception-and-not-the/1683006#1683006 1 Answer by Martin for How do I get the exception to come up at the source of the exception and not the point I call Invoke? Martin 2009-11-05T19:38:19Z 2009-11-05T19:58:40Z <p>Do you mean while debugging? If yes, then go to Debug menu -> Exceptions, then you can configure the debugger to break when an exception is thrown instead of when it is caught.</p> <p>You can either enable that feature for all exceptions, or if you know the type of the exception that you're interested in, then you can enable it for only that exception.</p> http://stackoverflow.com/questions/1676800/windows-explorer-columns-in-details-view-for-svn-in-windows-7-with-tortoisesvn/1676851#1676851 2 Answer by Martin for Windows Explorer columns (in details view) for SVN in Windows 7 (with TortoiseSVN ) Martin 2009-11-04T21:44:19Z 2009-11-04T21:44:19Z <p>This is a known problem with Windows Vista and Windows 7. The explorer no longer supports special/custom columns. See the <a href="http://tortoisesvn.net/vistaproblems" rel="nofollow">TortoiseSVN FAQ</a> for details.</p> http://stackoverflow.com/questions/699094/is-the-nvelocity-project-dead-are-there-alternatives 3 Is the NVelocity project dead? Are there alternatives? Martin 2009-03-30T21:22:23Z 2009-11-03T21:20:45Z <p>I'm looking for a template engine for .NET/C# to generate email notifications in my application. I read about <a href="http://nvelocity.sourceforge.net/" rel="nofollow">NVelocity</a> in the past and think it would fit my needs, but it seems this project is dead.</p> <p>Would you still recommended to use NVelocity for that purpose or can you suggest any alternatives?</p> <p>Note: I found some other templating engines, but these are mostly "view-engines" for ASP.NET MVC (Brail, NHaml, etc.). But I think these are not what I'm looking for.</p> http://stackoverflow.com/questions/1666023/authentication-error/1666057#1666057 0 Answer by Martin for authentication error!! Martin 2009-11-03T08:52:41Z 2009-11-03T08:52:41Z <p>There's not enough information in your question, but check your web.config file. Ensure that each element (e.g. <code>&lt;configuration&gt;</code>) has a matching closing tag.</p> http://stackoverflow.com/questions/1658736/asp-net-include-disables-code-behind/1658746#1658746 5 Answer by Martin for ASP.NET Include Disables Code-Behind Martin 2009-11-01T23:16:51Z 2009-11-01T23:22:27Z <p>Why don't you use a user control (*.ascx) instead of including an aspx page?</p> <p>Have a look at <a href="http://msdn.microsoft.com/en-us/library/fb3w5b53.aspx" rel="nofollow">this overview in MSDN</a> which shows how to create and user "user controls".</p> http://stackoverflow.com/questions/1654140/orm-persistence-layer-advice/1654238#1654238 3 Answer by Martin for ORM/Persistence layer Advice Martin 2009-10-31T12:27:01Z 2009-10-31T12:27:01Z <p>Have you thought about using an object oriented database such as <a href="http://www.db4o.com/" rel="nofollow">db4o</a>. Although I have never used it, I found it quite interesting when I discovered it:</p> <p>It supports LINQ querying, uses POCOs, and if I understood correctly, the data is simply stored in a file (no installation of a database is required).</p> <p>Some links: <a href="http://developer.db4o.com/Resources/view.aspx/Formula%5FOne%5FTutorial/Tutorial%5F.NET%5FVersion" rel="nofollow">tutorial</a>, <a href="http://developer.db4o.com/forums/permalink/57354/57348/ShowThread.aspx#57348" rel="nofollow">forum post</a></p> http://stackoverflow.com/questions/1639824/differences-between-ioc-containers/1640793#1640793 3 Answer by Martin for differences between IoC containers Martin 2009-10-28T23:28:22Z 2009-10-28T23:28:22Z <p>One thing which is different between the various IoC containers are the lifecycle or instantiation modes which are supported out of the box (when to create a new instance of the component):</p> <ul> <li>StructureMap <ul> <li>transient (called per-request), singleton, thread-local, per-HttpContext, per-HttpSession, Hybrid</li> </ul></li> <li>Ninject <ul> <li>transient, singleton, per-thread, per-HttpRequest</li> </ul></li> <li>Castle windsor <ul> <li>singleton, transient, per-thread, pooled</li> </ul></li> <li>autofac <ul> <li>transient (factory), singleton, per-HttpRequest</li> </ul></li> <li>Unity <ul> <li>transient, singleton, per-thread</li> </ul></li> </ul> http://stackoverflow.com/questions/1639937/repository-pattern-with-a-legacy-database-and-linq-to-sql 0 repository pattern with a legacy database and Linq to SQL Martin 2009-10-28T20:32:20Z 2009-10-28T22:35:42Z <p>I'm building an application on top of a legacy database (which I can not change). I'm using Linq to SQL for the data access, which means I have a (Linq to SQL) class for each table.</p> <p>My domain model does not match with the database. For example, there are two tables named <code>Users</code> and <code>Employees</code> which means I have to Linq to SQL classes of the named <code>User</code> and <code>Employee</code>. But in my domain model I'd like to have a <code>User</code> class that should contain some fields of each table (but I don't care about a lot of the existing fields).</p> <p>I'm unsure if I correctly understood how I should design my repositories:</p> <ul> <li>should the repositories perform the mapping between Linq to SQL classes (e.g. <code>User</code>, <code>Employee</code>) to the domain classes (<code>User</code>) and only return the domain classes to the application</li> <li>or should my repositories return the Linq to SQL classes and leave the mapping to the caller</li> </ul> <p>The first approach seems to make more sense to me, but is this the correct way to implement my repositories?</p> http://stackoverflow.com/questions/1640388/user-controls-viewstate/1640434#1640434 2 Answer by Martin for User Control's Viewstate Martin 2009-10-28T22:06:24Z 2009-10-28T22:22:52Z <p>There is a difference between <strong>ViewState</strong> (what you are talking about in your question) and <strong>ControlState</strong> (what is shown in the sample code):</p> <ul> <li><strong>ViewState</strong> can be turned off by the user of your UserControl, by setting <code>EnableViewState="false"</code>. In that case, you wouldn't be able to restore your property's value during the next request/postback (because there is no ViewState).</li> <li><strong>ControlState</strong> cannot be turned off. This means, that whatever you store in ControlState will be available during the next postback and you should therefore use ControlState for data that you absolutely need to be able to retrieve during the next request/postback.</li> </ul> <p><hr /></p> <p>See also these pages in MSDN: <a href="http://msdn.microsoft.com/en-us/library/bb386448.aspx" rel="nofollow">ASP.NET ViewState Overview</a> and <a href="http://msdn.microsoft.com/en-us/library/1whwt1k7.aspx" rel="nofollow">ControlState vs. ViewState</a></p> <p>Excerpt from the first page:</p> <blockquote> <p>In addition to view state, ASP.NET supports control state. The page uses control state to persist control information that must be retained between postbacks, even if view state is disabled for the page or for a control. Like view state, control state is stored in one or more hidden fields.</p> </blockquote> http://stackoverflow.com/questions/1630467/where-to-start-when-learning-c-development/1630479#1630479 3 Answer by Martin for Where to start when learning C# development? Martin 2009-10-27T12:29:28Z 2009-10-27T12:29:28Z <p>The <a href="http://msdn.microsoft.com/en-us/vcsharp/default.aspx" rel="nofollow">C# Developer Center</a>. Then <a href="http://www.asp.net/" rel="nofollow">http://www.asp.net/</a> or <a href="http://windowsclient.net/" rel="nofollow">http://windowsclient.net/</a> if you plan to develop ASP.NET / windows forms applications.</p> http://stackoverflow.com/questions/587832/asp-net-mvc-returning-two-repositories-to-the-view/1627910#1627910 0 Answer by Martin for ASP.NET MVC - Returning two repositories to the View Martin 2009-10-26T23:29:37Z 2009-10-26T23:29:37Z <p>There's a <a href="http://www.asp.net/learn/mvc/tutorial-13-cs.aspx" rel="nofollow">tutorial on <a href="http://asp.net/mvc" rel="nofollow">http://asp.net/mvc</a></a>, which demonstrates a variation of dhulk's solution for a slightly different problem: how to return some common data that is used by each view (e.g. by the master page) from each action method without having a lot of duplicated code.</p> <p>The tutorial introduces a so-called application controller (simply a base class for all controllers) which handles returning the common/shared data to the view.</p> http://stackoverflow.com/questions/1618171/intermediate-level-book-for-visual-studio-2008/1618253#1618253 0 Answer by Martin for Intermediate level book for Visual Studio 2008? Martin 2009-10-24T15:20:07Z 2009-10-24T15:20:07Z <p>I'm not sure what exactly you are looking for, but have a look at the various online resources and tutorials, for example the different <a href="http://msdn.microsoft.com/en-us/default.aspx" rel="nofollow">developer centers on MSDN</a> or <a href="http://www.asp.net/" rel="nofollow">http://asp.net</a> for everything related to web development.</p> http://stackoverflow.com/questions/51782/how-do-i-export-the-code-documentation-in-c-visualstudio-2008/1613456#1613456 0 Answer by Martin for How do I export the code documentation in C# / VisualStudio 2008? Martin 2009-10-23T13:31:12Z 2009-10-23T13:31:12Z <p>The original NDoc project (mentioned by others) is dead, but there is a new project called <a href="https://sourceforge.net/projects/ndoc3/" rel="nofollow">NDoc3</a>.</p> <p>NDoc3 supports .NET 2.0 - 3.5. It is currently available as a beta version and worked great for me. I'm not sure if the project is still active - the last beta was release in april 2009.</p> http://stackoverflow.com/questions/403639/best-documentation-system-for-net/1613449#1613449 0 Answer by Martin for Best documentation system for .Net? Martin 2009-10-23T13:29:50Z 2009-10-23T13:29:50Z <p>The original NDoc project (mentioned by others) is dead, but there is a new project called <a href="https://sourceforge.net/projects/ndoc3/" rel="nofollow">NDoc3</a>.</p> <p>NDoc3 supports .NET 2.0 - 3.5. It is currently available as a beta version and worked great for me. I'm not sure if the project is still active - the last beta was release in april 2009.</p> http://stackoverflow.com/questions/705836/how-can-i-create-chm-files-from-c-code/1613441#1613441 1 Answer by Martin for How can I create .chm files from C# code? Martin 2009-10-23T13:28:54Z 2009-10-23T13:28:54Z <p>The original NDoc project is dead, but there is a new project called <a href="https://sourceforge.net/projects/ndoc3/" rel="nofollow">NDoc3</a>.</p> <p>NDoc3 supports .NET 2.0 - 3.5. It is currently available as a beta version and worked great for me. I'm not sure if the project is still active - the last beta was release in april 2009.</p> http://stackoverflow.com/questions/1609865/how-good-are-the-resharper-5-0-nightly-builds/1609890#1609890 0 Answer by Martin for How good are the resharper 5.0 nightly builds? Martin 2009-10-22T20:53:57Z 2009-10-22T20:53:57Z <p>Haven't tried it yet, but as you can see when clicking the "Fixes" links, there are quite a lot of bugs that are being fixed for each new build. So probably you should expect that the software still has "some" bugs at such an early stage.</p> <p>Although I can add, that I'm regularly using R# 4.5 nightly builds, and so far I never had any serious problems with them. </p> http://stackoverflow.com/questions/1609440/camel-case-method-names/1609464#1609464 1 Answer by Martin for camel case method names Martin 2009-10-22T19:33:09Z 2009-10-22T19:33:09Z <p>I don't think there is any <em>reason</em>, these are just <em>conventions</em> and everyone might have his own.</p> http://stackoverflow.com/questions/1609065/migrating-visual-svn-server-from-one-windows-install-to-another/1609119#1609119 2 Answer by Martin for Migrating Visual SVN Server from one Windows install to another Martin 2009-10-22T18:29:36Z 2009-10-22T19:03:26Z <p>You can simply copy the folder containing the repositories (e.g. <code>c:\repositories</code>) to the new machine. That folder contains all the users (in the file <code>htpasswd</code>) and the access rights (<code>authz</code>).</p> <p>Note: this is true if you're using subversion authentication. I'm not sure if it's the same when using windows authentication, but I guess it is, since there's also a file named (<code>authz-windows</code>).</p> <p>Detailed instructions:</p> <ul> <li>on the new server, install VisualSVN server</li> <li>during the installation, you are asked where the repositories should be put (the default is <code>c:\repositories</code>)</li> <li>once the server is installed, go to the old machine and open the <code>VisualSVN Server Manager</code></li> <li>right-click the <code>VisualSVN Server (local)</code> entry in the console and click <code>Properties</code></li> <li>it the dialog you can find where the repositories are currently located</li> <li>copy everything contained in that folder to the new server's repository folder (e.g. <code>c:\repositories</code>)</li> <li>maybe you'll have to restart the server, but then everything should be up and running</li> </ul> http://stackoverflow.com/questions/1607982/html-coding-problem-code-are-not-structured-or-not-structured-well/1608111#1608111 0 Answer by Martin for Html coding Problem code are not structured or not structured well Martin 2009-10-22T15:41:16Z 2009-10-22T15:41:16Z <p>First of all you could extract all the duplicated CSS into css class:</p> <pre><code>&lt;style&gt; span.valid { margin-top: 4px; margin-left: 9px; position: absolute; width: 16px; height: 16px; } &lt;/style&gt; </code></pre> <p>This will result in a cleaner markup code, e.g:</p> <pre><code>... &lt;div class="left"&gt; नाम :&lt;/div&gt; &lt;input type="text" id="txtname" class="txtbox" /&gt; &lt;span id="validname" class="valid"&gt;&lt;/span&gt; &lt;br /&gt; &lt;div class="left"&gt; ई-मेल :&lt;/div&gt; &lt;input type="text" id="txtemail" class="txtbox" /&gt; &lt;span id="validemail" class="valid"&gt;&lt;/span&gt; .... </code></pre> http://stackoverflow.com/questions/1597066/how-do-i-import-this-function-from-inet-dll-into-net/1597088#1597088 2 Answer by Martin for How do I import this function from inet.dll into .NET? Martin 2009-10-20T20:26:01Z 2009-10-20T20:26:01Z <p>Have a look at <a href="http://www.pinvoke.net/default.aspx/wininet/InternetSetOption.html?diff=y" rel="nofollow">http://pinvoke.net</a> for documentation and sample code.</p> http://stackoverflow.com/questions/1582093/slow-performance-on-asp-net-website-where-to-start-looking-for-the-problem/1582110#1582110 1 Answer by Martin for Slow performance on asp.net website, where to start looking for the problem? Martin 2009-10-17T12:35:48Z 2009-10-17T12:35:48Z <p>First of all you will need to do some profiling/measuring to find out which part of the application is slow, e.g:</p> <ul> <li>long running db queries</li> <li>CPU/memory usage on the web/db server</li> <li>amount of data transferred between web server and client (browser)</li> <li>time it takes to render the pages in the browser (javascript)</li> </ul> http://stackoverflow.com/questions/1582065/nhibernate-monitor-connections/1582088#1582088 5 Answer by Martin for NHibernate monitor connections Martin 2009-10-17T12:25:29Z 2009-10-17T12:32:41Z <p>Have a look at <a href="http://www.nhprof.com/" rel="nofollow">NHibernate Profiler</a> (NHProf) if you don't mind a commercial product. Some of its features are:</p> <ul> <li>Visual insight into the interaction between your database and application code.</li> <li>Analysis and detection of common pitfalls when using NHibernate.</li> <li>Analysis is delivered via perfectly styled SQL and linkable code execution.</li> <li>Supports NHibernate (.NET) and Hibernate (Java).</li> </ul> http://stackoverflow.com/questions/1536660/jquery-click-event-handler-is-called-twice-for-a-checkbox/1800830#1800830 Comment by Martin on jquery click event handler is called twice for a checkbox Martin 2009-12-04T18:23:48Z 2009-12-04T18:23:48Z Unfortunately this doesn't work for me (tested in IE8). When I click the label/text associated with the checkbox, the alert is still shown twice. http://stackoverflow.com/questions/1812829/who-will-win-the-battle-for-ria-field-silverlight-or-flash Comment by Martin on Who will win the battle for RIA field - Silverlight or Flash? Martin 2009-11-28T15:55:33Z 2009-11-28T15:55:33Z @Stefano: See this question for a discussion about Silverlight vs. Flash: <a href="http://stackoverflow.com/questions/104270/flash-vs-silverlight" rel="nofollow" title="flash vs silverlight">stackoverflow.com/questions/104270/&hellip;</a> http://stackoverflow.com/questions/411316/how-to-access-properties-of-a-usercontrol-in-c/411332#411332 Comment by Martin on How to access properties of a usercontrol in C# Martin 2009-11-24T19:15:26Z 2009-11-24T19:15:26Z Thanks Jean!. Fixed it. http://stackoverflow.com/questions/1707473/what-is-best-book-for-asp-net-mvc/1707661#1707661 Comment by Martin on What is best book for ASP.NET MVC? Martin 2009-11-10T13:02:55Z 2009-11-10T13:02:55Z this book is <i>not</i> about ASP.NET <i>MVC</i> http://stackoverflow.com/questions/1707473/what-is-best-book-for-asp-net-mvc Comment by Martin on What is best book for ASP.NET MVC? Martin 2009-11-10T13:01:55Z 2009-11-10T13:01:55Z Why did you accept an answer which suggests a book about another topic? http://stackoverflow.com/questions/1666023/authentication-error Comment by Martin on authentication error!! Martin 2009-11-03T08:51:03Z 2009-11-03T08:51:03Z and what is the error message? You probably have a syntax error in your web.config file. http://stackoverflow.com/questions/1640388/user-controls-viewstate/1640434#1640434 Comment by Martin on User Control's Viewstate Martin 2009-10-28T23:01:26Z 2009-10-28T23:01:26Z Yes of course - it's up to you. If you are sure that the situation described in my comment will never occur, then there's no problem. http://stackoverflow.com/questions/1640388/user-controls-viewstate/1640434#1640434 Comment by Martin on User Control's Viewstate Martin 2009-10-28T22:37:20Z 2009-10-28T22:37:20Z &quot;The user&quot; is indeed the developer that puts the user control onto a page (this might be a different developer than the one that implemented the user control). So maybe the user wants to optimize the page size and therefore disables ViewState for the page. This might break the user control if it depends on ViewState, but not if it depends on ControlState. http://stackoverflow.com/questions/1336746/ddd-repository-awareness-of-other-repositories Comment by Martin on DDD Repository Awareness of Other Repositories Martin 2009-10-28T09:00:52Z 2009-10-28T09:00:52Z See also: <a href="http://stackoverflow.com/questions/1187667/calling-a-repository-from-a-repository" rel="nofollow" title="calling a repository from a repository">stackoverflow.com/questions/1187667/&hellip;</a> http://stackoverflow.com/questions/1633298/svn-users-set-up Comment by Martin on SVN users set-up Martin 2009-10-27T19:59:23Z 2009-10-27T19:59:23Z This is not really a programming question http://stackoverflow.com/questions/1616294/why-do-i-have-to-use-this-to-call-an-extension-method-from-within-the-extended Comment by Martin on Why do I have to use "this" to call an extension method from within the extended class? Martin 2009-10-23T22:47:15Z 2009-10-23T22:47:15Z This has nothing to do with ASP.NET or MVC controllers. I changed the questions title and tags. http://stackoverflow.com/questions/1611743/dynamically-populate-checkboxlist-in-asp-net-c Comment by Martin on Dynamically populate checkboxlist in Asp.Net C# Martin 2009-10-23T06:53:01Z 2009-10-23T06:53:01Z What have you tried so far? Can you show some code? http://stackoverflow.com/questions/1608069/is-there-a-commandline-audio-noise-reduction-tool-except-sox Comment by Martin on Is there a commandline audio noise reduction tool except SoX? Martin 2009-10-22T15:35:30Z 2009-10-22T15:35:30Z belongs on superuser.com? http://stackoverflow.com/questions/1602836/comparing-5-integers-in-least-number-of-comparisons/1602863#1602863 Comment by Martin on Comparing 5 Integers in least number of comparisons Martin 2009-10-21T19:00:04Z 2009-10-21T19:00:04Z You are of course correct! http://stackoverflow.com/questions/1578451/windows-web-server-2008-vs-windows-server-2008 Comment by Martin on Windows Web Server 2008 vs Windows Server 2008 Martin 2009-10-16T14:43:45Z 2009-10-16T14:43:45Z This question probably belongs to serverfault.com