User Martin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T15:19:18Zhttp://stackoverflow.com/feeds/user/19635http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1843784/optimizing-viewstate/1852270#18522701Answer by Martin for Optimizing ViewStateMartin2009-12-05T14:00:19Z2009-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-checkbox0jquery click event handler is called twice for a checkboxMartin2009-10-08T09:27:51Z2009-12-04T12:21:00Z
<p>I have a problem with the following code in an ASPX page:</p>
<pre><code><script type="text/javascript">
$(document).ready(function() {
$('.test').click(function() {
alert("click")
})
});
</script>
<asp:CheckBox runat="server" Text="Checkbox XYZ" CssClass="test" ID="cb1" />
</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><span class="test">
<input id="ctl00_c1_cb1" type="checkbox" name="ctl00$c1$cb1" checked="checked" />
<label for="ctl00_c1_cb1">Checkbox XYZ</label>
</span>
</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-containers2differences between IoC containersMartin2009-10-28T20:12:51Z2009-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#18292291Answer by Martin for ASP.NET control property with [Flags] enumMartin2009-12-01T21:58:34Z2009-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><uc1:MyControl ID="control1" runat="server"
Options="DeleteOnClose,Asynchronous" />
</code></pre>
http://stackoverflow.com/questions/411316/how-to-access-properties-of-a-usercontrol-in-c/411332#41133212Answer by Martin for How to access properties of a usercontrol in C#Martin2009-01-04T17:28:45Z2009-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#160265810Answer by Martin for What is the value of atomic commits in Subversion?Martin2009-10-21T18:23:45Z2009-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#17596970Answer by Martin for Recommended ASP.NET Grid and UI toolsMartin2009-11-18T22:47:02Z2009-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#17075089Answer by Martin for What is best book for ASP.NET MVC?Martin2009-11-10T12:10:59Z2009-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#16830061Answer 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?Martin2009-11-05T19:38:19Z2009-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#16768512Answer by Martin for Windows Explorer columns (in details view) for SVN in Windows 7 (with TortoiseSVN )Martin2009-11-04T21:44:19Z2009-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-alternatives3Is the NVelocity project dead? Are there alternatives?Martin2009-03-30T21:22:23Z2009-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#16660570Answer by Martin for authentication error!!Martin2009-11-03T08:52:41Z2009-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><configuration></code>) has a matching closing tag.</p>
http://stackoverflow.com/questions/1658736/asp-net-include-disables-code-behind/1658746#16587465Answer by Martin for ASP.NET Include Disables Code-BehindMartin2009-11-01T23:16:51Z2009-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#16542383Answer by Martin for ORM/Persistence layer AdviceMartin2009-10-31T12:27:01Z2009-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#16407933Answer by Martin for differences between IoC containersMartin2009-10-28T23:28:22Z2009-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-sql0repository pattern with a legacy database and Linq to SQLMartin2009-10-28T20:32:20Z2009-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#16404342Answer by Martin for User Control's Viewstate Martin2009-10-28T22:06:24Z2009-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#16304793Answer by Martin for Where to start when learning C# development?Martin2009-10-27T12:29:28Z2009-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#16279100Answer by Martin for ASP.NET MVC - Returning two repositories to the ViewMartin2009-10-26T23:29:37Z2009-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#16182530Answer by Martin for Intermediate level book for Visual Studio 2008?Martin2009-10-24T15:20:07Z2009-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#16134560Answer by Martin for How do I export the code documentation in C# / VisualStudio 2008?Martin2009-10-23T13:31:12Z2009-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#16134490Answer by Martin for Best documentation system for .Net?Martin2009-10-23T13:29:50Z2009-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#16134411Answer by Martin for How can I create .chm files from C# code?Martin2009-10-23T13:28:54Z2009-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#16098900Answer by Martin for How good are the resharper 5.0 nightly builds?Martin2009-10-22T20:53:57Z2009-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#16094641Answer by Martin for camel case method namesMartin2009-10-22T19:33:09Z2009-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#16091192Answer by Martin for Migrating Visual SVN Server from one Windows install to anotherMartin2009-10-22T18:29:36Z2009-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#16081110Answer by Martin for Html coding Problem code are not structured or not structured wellMartin2009-10-22T15:41:16Z2009-10-22T15:41:16Z<p>First of all you could extract all the duplicated CSS into css class:</p>
<pre><code><style>
span.valid
{
margin-top: 4px;
margin-left: 9px;
position: absolute;
width: 16px;
height: 16px;
}
</style>
</code></pre>
<p>This will result in a cleaner markup code, e.g:</p>
<pre><code>...
<div class="left">
नाम :</div>
<input type="text" id="txtname" class="txtbox" />
<span id="validname" class="valid"></span>
<br />
<div class="left">
ई-मेल :</div>
<input type="text" id="txtemail" class="txtbox" />
<span id="validemail" class="valid"></span>
....
</code></pre>
http://stackoverflow.com/questions/1597066/how-do-i-import-this-function-from-inet-dll-into-net/1597088#15970882Answer by Martin for How do I import this function from inet.dll into .NET?Martin2009-10-20T20:26:01Z2009-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#15821101Answer by Martin for Slow performance on asp.net website, where to start looking for the problem?Martin2009-10-17T12:35:48Z2009-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#15820885Answer by Martin for NHibernate monitor connectionsMartin2009-10-17T12:25:29Z2009-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#1800830Comment by Martin on jquery click event handler is called twice for a checkboxMartin2009-12-04T18:23:48Z2009-12-04T18:23:48ZUnfortunately 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-flashComment by Martin on Who will win the battle for RIA field - Silverlight or Flash?Martin2009-11-28T15:55:33Z2009-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/…</a>http://stackoverflow.com/questions/411316/how-to-access-properties-of-a-usercontrol-in-c/411332#411332Comment by Martin on How to access properties of a usercontrol in C#Martin2009-11-24T19:15:26Z2009-11-24T19:15:26ZThanks Jean!. Fixed it. http://stackoverflow.com/questions/1707473/what-is-best-book-for-asp-net-mvc/1707661#1707661Comment by Martin on What is best book for ASP.NET MVC?Martin2009-11-10T13:02:55Z2009-11-10T13:02:55Zthis book is <i>not</i> about ASP.NET <i>MVC</i> http://stackoverflow.com/questions/1707473/what-is-best-book-for-asp-net-mvcComment by Martin on What is best book for ASP.NET MVC?Martin2009-11-10T13:01:55Z2009-11-10T13:01:55ZWhy did you accept an answer which suggests a book about another topic?http://stackoverflow.com/questions/1666023/authentication-errorComment by Martin on authentication error!!Martin2009-11-03T08:51:03Z2009-11-03T08:51:03Zand 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#1640434Comment by Martin on User Control's Viewstate Martin2009-10-28T23:01:26Z2009-10-28T23:01:26ZYes 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#1640434Comment by Martin on User Control's Viewstate Martin2009-10-28T22:37:20Z2009-10-28T22:37:20Z"The user" 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-repositoriesComment by Martin on DDD Repository Awareness of Other RepositoriesMartin2009-10-28T09:00:52Z2009-10-28T09:00:52ZSee 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/…</a>http://stackoverflow.com/questions/1633298/svn-users-set-upComment by Martin on SVN users set-upMartin2009-10-27T19:59:23Z2009-10-27T19:59:23ZThis is not really a programming questionhttp://stackoverflow.com/questions/1616294/why-do-i-have-to-use-this-to-call-an-extension-method-from-within-the-extendedComment by Martin on Why do I have to use "this" to call an extension method from within the extended class?Martin2009-10-23T22:47:15Z2009-10-23T22:47:15ZThis 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-cComment by Martin on Dynamically populate checkboxlist in Asp.Net C#Martin2009-10-23T06:53:01Z2009-10-23T06:53:01ZWhat have you tried so far? Can you show some code?http://stackoverflow.com/questions/1608069/is-there-a-commandline-audio-noise-reduction-tool-except-soxComment by Martin on Is there a commandline audio noise reduction tool except SoX?Martin2009-10-22T15:35:30Z2009-10-22T15:35:30Zbelongs on superuser.com?http://stackoverflow.com/questions/1602836/comparing-5-integers-in-least-number-of-comparisons/1602863#1602863Comment by Martin on Comparing 5 Integers in least number of comparisonsMartin2009-10-21T19:00:04Z2009-10-21T19:00:04ZYou are of course correct!http://stackoverflow.com/questions/1578451/windows-web-server-2008-vs-windows-server-2008Comment by Martin on Windows Web Server 2008 vs Windows Server 2008Martin2009-10-16T14:43:45Z2009-10-16T14:43:45ZThis question probably belongs to serverfault.com