User Slavo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T22:19:34Z http://stackoverflow.com/feeds/user/1801 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1896270/net-cms-with-ability-to-add-custom-modules/1899979#1899979 0 Answer by Slavo for .NET CMS with ability to add custom modules Slavo 2009-12-14T09:54:55Z 2009-12-14T09:54:55Z <p>Take a look at <a href="http://www.sitefinity.com" rel="nofollow">Sitefinity</a>.</p> <p>To me it sounds like a perfect match for you, because its main advantage is exactly the extensibility it provides to developers. You can drop all kinds of .NET web controls (user controls, default MS controls, custom compiled controls) on CMS pages and use them right away. There's also a framework for module development that you can use to extend the CMS and add whatever you need.</p> <p>DISCLAIMER: I work on the team developing Sitefinity.</p> http://stackoverflow.com/questions/1818631/globalization-and-localization-in-asp-net/1818864#1818864 2 Answer by Slavo for Globalization and Localization in asp.net Slavo 2009-11-30T09:57:20Z 2009-11-30T09:57:20Z <p>Your question is too broad and yet you expect a code sample. This is an architectural decision, first familiarize yourself with the <a href="http://msdn.microsoft.com/en-us/library/c6zyy3s9.aspx" rel="nofollow">ASP.NET Globalization mechanisms</a> and then ask more specific questions.</p> <p>Here are some related posts you will find useful:</p> <ul> <li><a href="http://stackoverflow.com/questions/59130/what-do-i-need-to-know-to-globalize-an-asp-net-application">What do I need to know to globalize an asp.net application?</a></li> <li><a href="http://stackoverflow.com/questions/1502172/how-to-acheive-multilingaul-support-in-asp-net">How to acheive multilingaul support in ASP.NET</a></li> </ul> http://stackoverflow.com/questions/1818689/argument-passing-to-a-javascript-function-from-an-asp-net-c-button-clock-event/1818810#1818810 1 Answer by Slavo for argument passing to a javascript function from an asp.net c# button clock event Slavo 2009-11-30T09:46:35Z 2009-11-30T09:46:35Z <p>The code you've provided does not call a Javascript function from C#. What it does is add a new attribute to the button to hook up a Javascript event handler. The JS won't be executed until the next time you click the button. If you want to run a JS function on clicking a button, do what you are doing on Page_Load, or wherever, but not in the button's event handler. </p> <p>Also, you can concat the string that needs to be sent as the value of the attribute like so:</p> <p><code> myButton.Attributes.Add("onclick", "openNewWindow('" + spcd + "');";</code></p> <p>Just make sure you do that in some of the page's lifecycle event handlers (NOT THE BUTTON CLICK EVENT HANDLER), and also that the spcd variable has the value you need at that point in the lifecycle.</p> http://stackoverflow.com/questions/1728332/what-does-flickr-use-for-charting 0 What does Flickr use for charting? Slavo 2009-11-13T10:14:54Z 2009-11-13T10:44:50Z <p>Recently I was browsing my Flickr account and the stats for it and noticed that they display a very nice chart. What made an impression on me was that it was rendered in HTML and used JavaScript for mouseover effects. Does anyone know if they used some third party charting component, or if they did it in-house? If they did use something, what was it?</p> <p>Even if you don't know about Flickr specifically, can you recommend some charting components that use JavaScript or some JS library as opposed to Silverlight, Flash and other RIA technologies?</p> http://stackoverflow.com/questions/1689062/sitefinity-word-2003-can-you-create-blog-entries/1722475#1722475 0 Answer by Slavo for Sitefinity Word 2003 - Can you create Blog Entries Slavo 2009-11-12T14:15:50Z 2009-11-12T14:15:50Z <p>Hi Iceman,</p> <p>Sitefinity supports the <a href="http://en.wikipedia.org/wiki/MetaWeblog" rel="nofollow">Metablog API</a> and you can edit/create blog posts with any tool that also has support for that API. Gabe Sumner wrote a post a while ago about how to set up Windows Live Writer with Sitefinity Blogs. Check it out: <a href="http://blogs.telerik.com/gabesumner/posts/08-10-03/blogging%5Fwith%5Fease%5Fusing%5Fsitefinity%5Famp%5Fwindows%5Flive%5Fwriter.aspx" rel="nofollow">Blogging with ease using Sitefinity &amp; Windows Live Writer</a></p> http://stackoverflow.com/questions/1553806/when-designing-a-new-cms-database-what-would-be-the-most-important-features-to-a/1555193#1555193 1 Answer by Slavo for When designing a new CMS database, what would be the most important features to add? Slavo 2009-10-12T15:20:49Z 2009-10-12T15:20:49Z <p>What you are asking is a technology question, which is not necessary related to the features the CMS itself has. My advice and the way I would approach it would be to use an ORM. The reason is that when you start designing the database you fall into the niche of DB concepts. The purpose of a CMS is to provide an easy way to manage content.</p> <p>In this regard, extensibility is far more important than your database design and the user will not be able to see the database design. In short, start with an API, or if that is too much - just start with what you need to expose to the topmost layer. Then just somehow map this to the database without thinking about the structure itself. In this way, you would be concentrating on the problem you are solving rather than on the technology that might be needed to solve it. It feels more natural that way.</p> http://stackoverflow.com/questions/1443314/filter-properties-returned-by-typedescriptor-getproperties-depending-on-the-cla 0 Filter properties returned by TypeDescriptor.GetProperties() depending on the class they are declared in Slavo 2009-09-18T08:53:07Z 2009-10-11T14:00:03Z <p>Hey guys. I have the following situation.</p> <p>I want to use a TypeDescriptor to get the properties of a certain type. The type's depth in the inheritance hierarchy may vary. I only want to get the properties declared in the type itself and not in its parents (base). The problem is that when I call TypeDescriptor.GetProperties() it would return everything declared up the inheritance hierarchy up to Object.</p> <p>I only saw that I can filter the output by Attributes, but I don't want to add another attribute to the properties in my types just for this. Getting them through reflection and not using TypeDescriptor would do what I want, but is not an option for me, because some of the properties will be added dynamically to the type at some point.</p> <p>Any ideas? If the question is not clear I could provide an example.</p> http://stackoverflow.com/questions/1502439/previously-working-webservice-stoped-working/1502715#1502715 0 Answer by Slavo for Previously working webservice stoped working Slavo 2009-10-01T08:48:19Z 2009-10-01T08:48:19Z <p>You are using some unmanaged COM object from your managed code. Could it be that this object changed? I.e. it's not your application, it's the unmanaged library you are using. I might be wrong, but that's all I can think of when looking at the stack trace.</p> http://stackoverflow.com/questions/1470440/free-asp-net-mvc-webforms-based-cms-which-has-plugins-built-in-for-connecting-t/1476846#1476846 0 Answer by Slavo for Free ASP.Net (MVC/WebForms) based CMS which has plugins built in for connecting to Orkut and Facebook Slavo 2009-09-25T11:44:24Z 2009-09-25T11:44:24Z <p>You might want to check out <a href="http://www.sitefinity.com" rel="nofollow">Sitefinity</a>. It has the first three features built-in. I'm not sure what you mean by integration with social networks, but what Sitefinity has is bookmarking content from the CMS in those networks. Moderated user registration can be handled by the addition of a custom Membership provider, the same way as in ASP.NET</p> http://stackoverflow.com/questions/1437747/custom-server-control-with-form-and-scriptmanager/1439072#1439072 1 Answer by Slavo for Custom server control, with form and scriptmanager Slavo 2009-09-17T14:00:07Z 2009-09-17T14:00:07Z <p>ASP.NET allows only one form on the page. When you create controls, they are used on a page. You need a Page object to add controls to. This is why controls like the form and ScriptManager (who can only have one instance on a page) are put on the Page itself, or on the masterpage (if you have one). Putting them in a control would provide the opportunity to have two instances on the page, which would not work.</p> http://stackoverflow.com/questions/1438745/c-how-to-use-a-custom-treeview-object/1439001#1439001 1 Answer by Slavo for C#: How to use a custom TreeView object? Slavo 2009-09-17T13:49:43Z 2009-09-17T13:49:43Z <p>You have to either put this code in App_Code or build it in an assembly. Then in the ASPX, you need a @Register directive, which will include the namespace with your new control. In case you put it in App_Code the assembly would be App_Code. Then once it is included, you can create it on the page with the defined tag prefix. Here's what I mean:</p> <pre><code>&lt;%@ Page Language="C#"%&gt; &lt;%@ Register Assembly="MyBuiltAssembly" Namespace="CustomTreeViewNamespace" TagPrefix="test" %&gt; </code></pre> <p>...</p> <pre><code>&lt;test:CustomTreeView ID="CustomTreeView1" runat="server"&gt; </code></pre> http://stackoverflow.com/questions/1328416/net-cms-with-api-to-expose-content/1334667#1334667 1 Answer by Slavo for .Net CMS with API to expose content Slavo 2009-08-26T13:23:58Z 2009-08-26T13:23:58Z <p>Hey Peter,</p> <p>I see you've already taken a look at <a href="http://www.sitefinity.com" rel="nofollow">Sitefinity</a>. Just a side note I wanted to add. While in the current version (3.7) you can accomplish what you want, it is not provided as a service API, just a standalone API that you can use on the server (and then probably expose as a service).</p> <p>With 4.0 we have planned including service endpoints for the whole API. You will be able to transfer content and pages between websites with minimum effort.</p> <p>Regards, Slavo.</p> http://stackoverflow.com/questions/1321594/disable-the-control-state/1322368#1322368 0 Answer by Slavo for Disable the Control State Slavo 2009-08-24T13:19:58Z 2009-08-24T13:19:58Z <p>OK, I generally agree with Rune that you can't do it, but just a random thought:</p> <p>To use control state, a control explicitly has to call </p> <pre><code>Page.RegisterRequiresControlState(this); </code></pre> <p>on Init. If the controls you add to the page do this, and you reverse it after you've added them to the Controls collection what happens? Can it be reversed?</p> <p>This sounds a bit stupid, but you might explore.</p> http://stackoverflow.com/questions/1321607/programmatically-give-full-trust-to-an-activex/1322346#1322346 1 Answer by Slavo for Programmatically give full trust to an ActiveX? Slavo 2009-08-24T13:15:06Z 2009-08-24T13:15:06Z <p>I don't think so. Code permissions can only be set through the configuration of an application, and even if it can be done through code, then the code that sets them would need to have permission to do this as well. Even then the settings from the web.config or machine.config would take precedence. </p> <p>The point of these code permissions is that admins are able to control what an application can do. If the AppDommain for your application doesn't have rights to do certain things, why would and ActiveX you create have them?</p> http://stackoverflow.com/questions/1321944/asp-net-repeater-item-command-not-getting-fired/1322322#1322322 0 Answer by Slavo for ASP.Net repeater Item Command not getting fired Slavo 2009-08-24T13:10:46Z 2009-08-24T13:10:46Z <p>I am not positive about this, but you might have to set the <strong>CommandName</strong> and optionally <strong>CommandArgument</strong> properties for the button causing the <strong>ItemCommand</strong> event. Otherwise ASP.NET would assume that there is no button on the page, which you'd like to fire the event. You can try that.</p> <p>Plus, if you're not differentiating between command names, why not use each button's Click event instead? Just subscribe to those in the repeater's <strong>ItemCreated</strong> or <strong>ItemDataBound</strong>.</p> http://stackoverflow.com/questions/557773/best-way-to-integrate-stylecop-with-tfs-ci 0 Best way to integrate StyleCop with TFS CI Slavo 2009-02-17T17:11:52Z 2009-08-19T13:43:01Z <p>I've been doing research on how to enable source analysis for the project I'm working on and plan to use StyleCop. The setup I have is a TFS Server for source control, using TFS Continuous Integration. I want to enable source analysis for CI builds and daily builds run on the build machine, and not only for those run on developers' machines.</p> <p>Here's an article from the documentation of StyleCop that I read on the subject: <a href="http://blog.newagesolution.net/2008/07/how-to-use-stylecop-and-msbuild-and.html" rel="nofollow">http://blog.newagesolution.net/2008/07/how-to-use-stylecop-and-msbuild-and.html</a>. It basically modifies the csproj file for the purpose.</p> <p>I've also read other opinions about how StyleCop should be integrated with build automation, which advise doing the same thing using build tasks:</p> <p><a href="http://blog.newagesolution.net/2008/07/how-to-use-stylecop-and-msbuild-and.html" rel="nofollow">http://blog.newagesolution.net/2008/07/how-to-use-stylecop-and-msbuild-and.html</a> <a href="http://freetodev.spaces.live.com/blog/cns!EC3C8F2028D842D5!400.entry" rel="nofollow">http://freetodev.spaces.live.com/blog/cns!EC3C8F2028D842D5!400.entry</a>.</p> <p>What are you opinions? Have you had similar projects and done something like this?</p> http://stackoverflow.com/questions/1078866/jquery-how-to-register-an-event-on-all-pages/1078954#1078954 2 Answer by Slavo for Jquery: how to register an event on all pages? Slavo 2009-07-03T11:28:28Z 2009-07-03T11:28:28Z <p>Are you actually doing some server-side programming or you are talking about plain HTML pages. I would advise that you have templates (this is specific to your development environment and tools of choice) and include the JS in those templates. Then the actual pages will all use the template and have the JS available. The question you are asking has in fact nothing to do with Javascript or JQuery, but the way you organize your site... unless I'm missing something.</p> http://stackoverflow.com/questions/1078910/how-can-i-call-the-acrobat-feature-ocr-in-c/1078934#1078934 -1 Answer by Slavo for How can i call the Acrobat feature OCR in c# ? Slavo 2009-07-03T11:24:20Z 2009-07-03T11:24:20Z <p>I believe this is part of the Adobe Reader software and is not accessible through an API. There's an API and libraries for constructing PDF documents per the format specifications, but OCR is something that concerns the reader and not the format. I'm afraid you would either have to use another library or implement it yourself.</p> http://stackoverflow.com/questions/1061680/any-hints-on-getting-sitefinity-cms-to-work-on-medium-trust/1064263#1064263 3 Answer by Slavo for Any hints on getting Sitefinity CMS to work on medium trust? Slavo 2009-06-30T15:16:35Z 2009-06-30T15:16:35Z <p>Hi Quog,</p> <p>Slavo here from the team working on Sitefinity.</p> <p>Someone from the team will reply to the support ticket you have submitted, but in the interest of anyone else that may have issues similar to yours, I wanted to write to you here as well. It doesn't become clear what problems exactly you have in your scenario, so I'll elaborate a bit on how Sitefinity works in a medium trust environment.</p> <p>All of the features of Sitefinity are supported in such an environment, with minor exceptions. The main portion of code that requires full trust to run is the data access code. Sitefinity uses an ORM tool called Nolics.net to interact with the project database and supports automatic schema upgrades. A schema upgrade is required in the following scenarios:</p> <ul> <li>When you start your project for the first time (the database is empty)</li> <li>When you upgrade to a new version of Sitefinity (changed version of the Sitefinity assemblies)</li> <li>When you add a new data provider plugged into Sitefinity (more tables to add to the database)</li> </ul> <p>Since hosting providers who run in medium trust will not let you change those settings, the solution is to perform these operations once on a development machine and then upload the changes to the production server.</p> <p>If you haven't been able to run your project for the first time, chances are this is the reason. My advice would be to setup the project locally somewhere and run it, make sure you can browse the site and the administration interface, and then upload the project and the database (with already upgraded schema) with your hosting provider.</p> <p>We also have guides on how to get started with <a href="http://www.sitefinity.com/support/kb/sitefinity-3-x/discount-asp-net-hosting-provider.aspx" rel="nofollow">Discount ASP.NET</a> and <a href="http://www.sitefinity.com/support/kb/sitefinity-3-x/godaddy-asp-net-hosting-provider.aspx" rel="nofollow">GoDaddy</a> as the most commonly used shared hosting providers. Maybe those could help.</p> <p>If you still experience issues with your project, please provide more details, and I would be glad to help you here, or in our forums or support system.</p> <p>Best, Slavo</p> http://stackoverflow.com/questions/955594/when-exactly-does-applicationend-get-called-and-how-can-i-manually-cause-this 2 When exactly does Application_End get called and how can I manually cause this? Slavo 2009-06-05T12:26:38Z 2009-06-05T13:11:42Z <p>I know that the event handler for this event is called when the application pool is recycled by IIS, but when does that happen? What about if using the built-in Visual Studio server (Cassini)? If I kill the server process, would Application_End be fired?</p> <p><strong>UPDATE:</strong> I know about web.config and BIN folder changes. I'm interested in the case of shutting down the pool after the application has been idle for a period of time without touching anything.</p> http://stackoverflow.com/questions/904701/versatile-asp-net-cms-in-c/906670#906670 0 Answer by Slavo for Versatile ASP.NET CMS in C# Slavo 2009-05-25T13:02:54Z 2009-05-25T13:02:54Z <p>From what you describe I would say that you need a development platform and a CMS in one. Take a look at <a href="http://www.sitefinity.com" rel="nofollow">Sitefinity</a>, I would say that what you are looking for is exactly its main advantage. It makes custom development a piece of cake.</p> <p><strong>Disclaimer:</strong> I am on the team developing Sitefinity at <a href="http://www.telerik.com" rel="nofollow">Telerik</a>.</p> http://stackoverflow.com/questions/72204/have-you-used-rhino-igloo 0 Have you used Rhino Igloo? Slavo 2008-09-16T13:32:47Z 2009-05-19T04:53:02Z <p>Has anyone used <a href="http://www.ayende.com/Blog/archive/2007/09/03/Rhino-Igloo-ndash-MVC-Framework-for-Web-Forms.aspx" rel="nofollow">Rhino igloo</a> in a non-trivial project? I am curious if it's worth, what are its drawbacks, does it enhance testability a lot, is it easy to use. How would you compare it to a pure MVC framework (ASP.NET MVC)? Please share the experience.</p> http://stackoverflow.com/questions/784837/asp-net-mvc-modular-application-howto-recommendations/784876#784876 2 Answer by Slavo for asp.net mvc modular application howto/recommendations Slavo 2009-04-24T07:49:13Z 2009-04-24T07:49:13Z <p>Modularity is quite a broad concept, and I think that the answer to your question just has to be subjective. What you are asking about is an architectural decision, and there is no one good way to go about it. Depending on the project, you may have different priorities and importance of different parts of the system. I think that the MVC pattern provides enough separation of concerns, which is actually the purpose of each modular architecture.</p> <p>If you want to be able to plug a new modules easily in the existing application, then how do you define a module? I think you should narrow down the question a bit to get some non-vague and meaningful answers.</p> http://stackoverflow.com/questions/777041/system-security-securityexception-that-assembly-does-not-allow-partially-trusted/777154#777154 1 Answer by Slavo for System.Security.SecurityException: That assembly does not allow partially trusted callers Slavo 2009-04-22T13:13:10Z 2009-04-22T13:13:10Z <p>Most probably the library that you use does not support a medium trust environment (most shared hosting companies). It might not be your code that throws the error, but the third party - make sure that they do support this.</p> <p>If the stack trace ends in a portion of code written by you, then please provide this code, currently it is not clear what exactly doesn't have permissions to run.</p> http://stackoverflow.com/questions/776608/hiding-asp-net-sitemap-nodes-in-treeview-control/776647#776647 0 Answer by Slavo for Hiding ASP.NET SiteMap nodes in TreeView control Slavo 2009-04-22T11:00:46Z 2009-04-22T11:00:46Z <p>Based on what criteria? If you only want to hide specific single nodes, subscribe to the NodeDataBound event of the TreeView and set the whole item (node) to Visible=false.</p> <p>If you need to do this in a better way and provide more flexibility, I would advise that you implement your own SiteMapProvider. Then you can have a property ShowInNavigation for each sitemap node, and would be able to set that when constructing your sitemap.</p> http://stackoverflow.com/questions/776589/are-there-any-really-big-sites-which-use-asp-net/776594#776594 9 Answer by Slavo for Are there any really big sites which use ASP.NET? Slavo 2009-04-22T10:48:42Z 2009-04-22T10:48:42Z <p><a href="http://msdn.microsoft.com/en-us/default.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/default.aspx</a></p> http://stackoverflow.com/questions/773123/conditional-assembly-references-based-on-solution/773229#773229 0 Answer by Slavo for conditional assembly references based on solution Slavo 2009-04-21T15:37:47Z 2009-04-21T15:37:47Z <p>I think that this should be done when you build your projects for production. Simply enclose all code that needs to disappear between a compiler-level IF, that checks for a defined compiler directive. If on, then the code between the IF and ENDIF will not compile. This works for code files only.</p> <p>For anything other that you need to take out, just make up your own way, depending on the file format, as Jon Skeet mentioned. But once you put that into build scripts, you need not care about it any more - no switching configurations, etc.</p> http://stackoverflow.com/questions/773092/where-to-place-language-translations-in-an-multitiered-architecture/773180#773180 0 Answer by Slavo for Where to place language translations in an multitiered architecture Slavo 2009-04-21T15:30:01Z 2009-04-21T15:30:01Z <p>I'm not quite sure what is your definition of the WEB UI. If you use the MVC pattern, the Controller would be place to take care of showing the right language version in the UI, while the text itself would be in the View layer. What I didn't understand is what plays the role of the controller in your architecture. Does BLL mean only including processing logic and no communication between UI and Services? If so, then probably the Web UI layer would contain the localization logic.</p> <p>I would also say that it depends a lot on the technology you use in the project. ASP.NET for example has a built-in localization model that you can use. I'm not saying it should serve as an example, even on the contrary - ASP.NET breaks separation of concerns. But I think this is an issue, which would have very different solutions in different custom architecture models, as in your case.</p> http://stackoverflow.com/questions/772980/use-regex-to-find-contents-of-html-listitem-net/773018#773018 5 Answer by Slavo for Use REGEX to find Contents of HTML ListItem (.NET) Slavo 2009-04-21T15:00:16Z 2009-04-21T15:00:16Z <p>If this is a recurring scenario, I would rather use an HTML parser. Parsing HTML with Regex will take a tremendous amount of time, and might still turn out buggy, because of malformed input (that you mentioned).</p> <p>Here's one I found with a basic Google search:<br /> <a href="http://www.netomatix.com/products/Documentmanagement/HtmlParserNet.aspx" rel="nofollow">http://www.netomatix.com/products/Documentmanagement/HtmlParserNet.aspx</a></p> <p><strong>UPDATE:</strong></p> <p>Here are some related posts on StackOverflow:<br /> <a href="http://stackoverflow.com/questions/710677/how-do-you-parse-a-poorly-formatted-html-file">http://stackoverflow.com/questions/710677/how-do-you-parse-a-poorly-formatted-html-file</a><br /> <a href="http://stackoverflow.com/questions/56107/what-is-the-best-way-to-parse-html-in-c">http://stackoverflow.com/questions/56107/what-is-the-best-way-to-parse-html-in-c</a></p> http://stackoverflow.com/questions/763450/is-it-ok-to-be-able-to-paste-text-in-a-password-box 3 Is it OK to be able to paste text in a password box? Slavo 2009-04-18T13:34:57Z 2009-04-18T14:56:07Z <p>What do you web developers think? Should we disable pasting in masked password boxes in our web applications or not. Could this be a security hole or cause confusion or unwanted results? This is probably a question about user experience and not so much about programming.</p> http://stackoverflow.com/questions/1923107/how-to-allow-tabs-in-an-html-edit-box/1923122#1923122 Comment by Slavo on How to allow tabs in an HTML Edit box? Slavo 2009-12-17T16:59:30Z 2009-12-17T16:59:30Z I think he meant Tab as a series of spaces (Tab key on keyboard), and I'm not sure you mean that. :) http://stackoverflow.com/questions/1813861/recommended-cms Comment by Slavo on Recommended CMS...? Slavo 2009-11-30T09:32:52Z 2009-11-30T09:32:52Z You might want to add the info from the comment in the question itself - would be much more visible and easier to answer. http://stackoverflow.com/questions/683620/what-is-the-best-resource-for-learning-c-expression-trees-in-depth/684944#684944 Comment by Slavo on What is the best resource for learning C# expression trees in depth? Slavo 2009-09-25T16:05:23Z 2009-09-25T16:05:23Z Invaluable. Thanks. http://stackoverflow.com/questions/1321467/which-programming-technique-helps-you-most-to-avoid-or-resolve-bugs-before-they-c Comment by Slavo on Which programming technique helps you most to avoid or resolve bugs before they come into production Slavo 2009-08-24T13:24:01Z 2009-08-24T13:24:01Z @jalf Hahahaha. Good one. http://stackoverflow.com/questions/4219/experience-with-svn-vs-team-foundation-server/35218#35218 Comment by Slavo on Experience with SVN vs. Team Foundation Server? Slavo 2009-08-07T10:11:35Z 2009-08-07T10:11:35Z 'Merging is a PAIN in comparison to subversion.&quot; - why do you think so? I switched from TFS to SVN with AnkhSVN and TortoiseSVN and it's been all unpleasant surprises. Can you point out the conceptual differences between the two modules? http://stackoverflow.com/questions/1222829/apache-htaccess-rewrite-question Comment by Slavo on Apache .htaccess rewrite question Slavo 2009-08-03T15:00:41Z 2009-08-03T15:00:41Z What does &quot;did not comply&quot; mean? I cannot understand what you want. http://stackoverflow.com/questions/1099730/contact-form-in-sitefinity-c/1101496#1101496 Comment by Slavo on Contact form in SiteFinity C# Slavo 2009-07-09T10:34:51Z 2009-07-09T10:34:51Z Great reply, Sean! http://stackoverflow.com/questions/1061680/any-hints-on-getting-sitefinity-cms-to-work-on-medium-trust/1064263#1064263 Comment by Slavo on Any hints on getting Sitefinity CMS to work on medium trust? Slavo 2009-07-01T13:05:35Z 2009-07-01T13:05:35Z When do you get this security exception? The first time you launch the site? If you send us the web.config through the support system we'll try to reproduce the issue and provide better help. http://stackoverflow.com/questions/234681/how-to-implement-basevalidator-and-ivalidator-in-custom-control-asp-net/234689#234689 Comment by Slavo on How to implement BaseValidator and IValidator in custom control - ASP.Net Slavo 2009-06-05T14:09:27Z 2009-06-05T14:09:27Z What if inheriting is not an option? This is really bad move from MS. Why didn't they put the property in the interface? http://stackoverflow.com/questions/955594/when-exactly-does-applicationend-get-called-and-how-can-i-manually-cause-this Comment by Slavo on When exactly does Application_End get called and how can I manually cause this? Slavo 2009-06-05T12:36:32Z 2009-06-05T12:36:32Z BTW, shutting down Cassini from the Tray Icon in fact raises the ApplicationEnd event. http://stackoverflow.com/questions/955594/when-exactly-does-applicationend-get-called-and-how-can-i-manually-cause-this/955605#955605 Comment by Slavo on When exactly does Application_End get called and how can I manually cause this? Slavo 2009-06-05T12:35:59Z 2009-06-05T12:35:59Z Thanks. I didn't express this clearly, but I was more interested in the case when the application is idle and you don't change anything. I.e. what does idle mean - is it a configurable option in IIS how long to wait before shutting down the app pool? http://stackoverflow.com/questions/904701/versatile-asp-net-cms-in-c/906670#906670 Comment by Slavo on Versatile ASP.NET CMS in C# Slavo 2009-05-26T12:08:17Z 2009-05-26T12:08:17Z It has a Community edition, which is free. The missing functionality is something you would need in an enterprise-level CMS. <a href="http://www.sitefinity.com/product/compare-editions.aspx" rel="nofollow">sitefinity.com/product/compare-editions.aspx/&hellip;</a> http://stackoverflow.com/questions/784835/what-are-typical-questions-good-programmers-should-be-able-to-answer/784871#784871 Comment by Slavo on What are typical questions good programmers should be able to answer? Slavo 2009-04-24T07:57:52Z 2009-04-24T07:57:52Z As a web developer working in the field for a little less than two years now, I never had to sort an array in a production environment. I think problems like those teach good skills in a beginner programmer, but do not show skill if done under 3 minutes on a whiteboard. They show that someone learned by heart. http://stackoverflow.com/questions/776608/hiding-asp-net-sitemap-nodes-in-treeview-control/776647#776647 Comment by Slavo on Hiding ASP.NET SiteMap nodes in TreeView control Slavo 2009-04-22T11:14:14Z 2009-04-22T11:14:14Z I still don't understand what you want. http://stackoverflow.com/questions/776592/comment-on-code-is-an-excuse Comment by Slavo on Comment on code - is an excuse? Slavo 2009-04-22T10:56:36Z 2009-04-22T10:56:36Z I don't think it is necessary to tag with non-programming-related. The question, however vague is actually about programming.