User Alexander Prokofyev - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:46:33Z http://stackoverflow.com/feeds/user/11256 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/287060/sheduled-run-of-stored-procedure-on-ms-sql-server 2 Sheduled run of stored procedure on MS SQL server Alexander Prokofyev 2008-11-13T14:25:43Z 2009-11-20T09:49:17Z <p>Is it possible to set up somehow Microsoft SQL Server to run automatically a stored procedure on regular basis?</p> http://stackoverflow.com/questions/166089/what-is-c-analog-of-c-stdpair 11 What is C# analog of C++ std::pair? Alexander Prokofyev 2008-10-03T09:33:06Z 2009-11-19T01:56:24Z <p>I am interested what is C# analog of C++ std::pair? I have found System.Web.UI.Pair class, but wanted something template based.</p> <p>Thank you!</p> http://stackoverflow.com/questions/800983/how-to-disable-custom-validation-method-on-condition 1 How to disable custom validation method on condition Alexander Prokofyev 2009-04-29T05:20:42Z 2009-11-08T13:37:33Z <p>I use jQuery <a href="http://docs.jquery.com/Plugins/Validation" rel="nofollow">Validation plugin</a> to ensure what user entered positive *cost_of_car* in first text field and positive *payment_amount* in second text field such what *cost_of_car * 0.4 &lt;= payment_amount &lt;= cost_of_car*:</p> <pre><code>$.validator.addMethod("testMaxAmount", function() { return $("#cost_of_car").val() - 0 &gt;= $("#payment_amount").val() - 0; }, "Can't be more than cost_of_car"); $.validator.addMethod("testMinAmount", function() { return $("#cost_of_car").val() * 0.4 &lt;= $("#payment_amount").val() - 0; }, "Can't be less than cost_of_car * 0.4"); $("#calc_form").validate( { rules: { cost_of_car: { required: true, number: true, min: 1, max: 10000000 }, payment_amount: { required: true, number: true, testMaxAmount: true, testMinAmount: true } } }); </code></pre> <p>Now I want to skip testMaxAmount and testMinAmount checks until *cost_of_car* is valid. Testing</p> <pre><code>$("#calc_form").validate().element("#cost_of_car") </code></pre> <p>or even </p> <pre><code>$("#calc_form").validate({ignore: "#payment_amount"}).element("#cost_of_car") </code></pre> <p>inside these methods leads to the recursion and hangs browser.</p> <p>Would you propose some other method to disable validation of *payment_amount* until *cost_of_car* is valid, please?</p> http://stackoverflow.com/questions/1679947/jquery-validation-plugin-attaches-only-to-the-first-form 1 jQuery Validation plugin attaches only to the first form Alexander Prokofyev 2009-11-05T11:29:34Z 2009-11-05T11:34:29Z <p>I have noticed a strange <a href="http://docs.jquery.com/Plugins/Validation" rel="nofollow">jQuery Validation</a> plugin behaviour, possible a bug (tested with the latest version at <a href="http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js" rel="nofollow">http://dev.jquery.com/view/trunk/plugins/validate/jquery.validate.js</a>).</p> <p>Suppose I have several forms on a page. </p> <p>This code leads to only first form to be validated:</p> <pre><code>$(document).ready(function() { $("form").validate(); }); </code></pre> <p>But this one attaches data validator to all forms:</p> <pre><code>$(document).ready(function() { $("form").each(function() { $(this).validate(); }); }); </code></pre> <p>Is it by design? Why can't I handle all forms at once?</p> http://stackoverflow.com/questions/1678751/why-asp-net-mvc-2-will-have-its-own-client-side-validation 0 Why ASP.NET MVC 2 will have its own client-side validation? Alexander Prokofyev 2009-11-05T06:45:56Z 2009-11-05T06:51:24Z <p>I am interested what are possible reasons that ASP.NET MVC 2 will have its own client-side validation instead of merging with <a href="http://xval.codeplex.com/" rel="nofollow">xVal validation framework</a>? Has someone from ASP.NET MVC team blogged about it?</p> http://stackoverflow.com/questions/1676840/user-html-helper-to-populate-a-dropdown-list/1678639#1678639 1 Answer by Alexander Prokofyev for User HTML Helper to populate a DropDown list Alexander Prokofyev 2009-11-05T06:06:39Z 2009-11-05T06:06:39Z <p>Try using</p> <pre><code>&lt;%= Html.DropDownList("User.Affiliate", new SelectList(UserFacade.Instance.SelectAffiliates()))%&gt; </code></pre> http://stackoverflow.com/questions/1678137/how-can-i-change-the-mvc-ajax-form-parameters-in-the-posted-to-controller/1678629#1678629 1 Answer by Alexander Prokofyev for How can I change the mvc ajax form parameters in the posted-to controller? Alexander Prokofyev 2009-11-05T06:02:07Z 2009-11-05T06:02:07Z <p>Controller has no information where and how calling JavaScript code is going to insert controller's result into the page. So controller is unable to change it.</p> http://stackoverflow.com/questions/891603/html-beginform-loses-routevalues-with-formmethod-get 1 Html.BeginForm loses routeValues with FormMethod.GET Alexander Prokofyev 2009-05-21T06:13:54Z 2009-10-27T15:11:02Z <p>I have noticed what <em>Html.BeginForm()</em> method encodes supplied <em>routeValues</em> into <strong>action</strong> attribute of FORM tag. This works well with POST method. But if method is GET all parameters in action URL are stripped by browser (tested on IE8 and Firefox 3.0.7).</p> <p>For example, this code in view</p> <pre><code>&lt;% using (Html.BeginForm("TestAction", "TestController", new { test = 123 }, FormMethod.Get)) { Response.Write("&lt;input type='submit'&gt;"); }; %&gt; </code></pre> <p>gives such HTML </p> <pre><code>&lt;form action="/TestController/TestAction?test=123" method="get"&gt; &lt;input type='submit'&gt; &lt;/form&gt; </code></pre> <p>But after submitting the form URL became <strong>/TestController/TestAction</strong> not <strong>/TestController/TestAction?test=123</strong> (parameter is lost).</p> <p>Now I use group of <em>Html.Hidden()</em> calls instead of <em>routeValues</em> parameter but I am interested is there another workaround? Should it be considered as a bug in MVC which will be fixed sometime?</p> http://stackoverflow.com/questions/1628704/jqgrid-call-asp-net-mvc-controller-action-lost-web-application-name/1628888#1628888 1 Answer by Alexander Prokofyev for jqGrid call ASP.NET MVC controller action lost web application name Alexander Prokofyev 2009-10-27T05:17:10Z 2009-10-27T05:17:10Z <p>Use this code instead:</p> <pre><code>jQuery("#sandgrid").jqGrid({ url: '&lt;%= Url.Action("Search", "Deposit") %&gt;?startDate=' + startDate + '&amp;endDate=' + endDate, datatype: 'json', ..... </code></pre> <p><a href="http://msdn.microsoft.com/en-us/library/system.web.mvc.urlhelper.action.aspx" rel="nofollow">Url.Action()</a> method automatically adds the virtual directory path into the URL.</p> http://stackoverflow.com/questions/271319/lightweight-sql-database-which-doesnt-require-installation 5 Lightweight SQL database which doesn't require installation Alexander Prokofyev 2008-11-07T05:39:22Z 2009-10-20T04:29:58Z <p>Could you recommend me, please, lightweight SQL database which doesn't require installation on a client computer to work and could be accessed easily from .NET application? Only basic SQL capabilities are needed.</p> <p>Now I am using Access database in simple projects and distribute .MDB and .EXE files together. Looking for any alternatives.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1520027/viewusercontrol-containing-viewpage/1529618#1529618 0 Answer by Alexander Prokofyev for ViewUserControl containing ViewPage Alexander Prokofyev 2009-10-07T05:18:20Z 2009-10-07T05:18:20Z <p>It seems there is no standard property for this so you should pass ViewPage object to partial view yourself:</p> <pre><code>&lt;% Html.RenderPartial("partial_view_name", this); %&gt; </code></pre> http://stackoverflow.com/questions/301147/css-way-to-horizontally-align-table 2 CSS way to horizontally align table Alexander Prokofyev 2008-11-19T06:17:47Z 2009-10-02T02:36:49Z <p>I want to show a table of fixed width at the center of browser window. Now I use</p> <pre><code>&lt;table width="200" align="center"&gt; </code></pre> <p>But Visual Studio 2008 gives warning on this line:</p> <p><em>Attribute 'align' is considered outdated. A newer construct is recommended.</em></p> <p>What CSS style should I apply to the table to obtain the same layout?</p> http://stackoverflow.com/questions/1489287/mvc-model-binding-using-a-name-different-from-the-querystring-for-the-method-par/1490546#1490546 0 Answer by Alexander Prokofyev for MVC Model Binding: Using a name different from the QueryString for the Method Parameter Alexander Prokofyev 2009-09-29T04:18:55Z 2009-09-29T04:18:55Z <p>You could use explicit object initialization:</p> <pre><code>public ActionResult Question(string ask, string answers) { return View("Question", new RequestObject { AskId = ask, NumberOfAnswers = answers }); } </code></pre> http://stackoverflow.com/questions/564426/should-project-manager-ask-how-much-time-will-it-take-to-implement-some-functiona 5 Should project manager ask how much time will it take to implement some functionality? Alexander Prokofyev 2009-02-19T08:45:00Z 2009-09-27T07:04:52Z <p>Our project manager usually consult developers how many hours they need to implement some functionality asked by client. Is this consistent with the principles of management? Do you or your project managers do the same?</p> http://stackoverflow.com/questions/1476061/mvc-view-and-javascript-file/1476181#1476181 1 Answer by Alexander Prokofyev for MVC View and JavaScript file Alexander Prokofyev 2009-09-25T08:52:36Z 2009-09-25T08:52:36Z <p>JavaScript files by convention should be placed in project's <em>Scripts</em> folder and could be linked as</p> <pre><code>&lt;script src="&lt;%= Url.Content("~/Scripts/jquery-1.3.2.js") %&gt;" </code></pre> http://stackoverflow.com/questions/1470939/encrypting-and-decrypting-strings-in-excel 1 Encrypting and decrypting strings in Excel Alexander Prokofyev 2009-09-24T10:53:47Z 2009-09-24T11:29:26Z <p>I am interested if it's possible to do string encryption/decryption using Excel Visual Basic and some cryptographic service provider.</p> <p>I have found a walkthrough <a href="http://msdn.microsoft.com/en-us/library/ms172831.aspx" rel="nofollow">Encrypting and Decrypting Strings in Visual Basic</a>, but it seems it's valid for standalone Visual Basic only.</p> <p>So would you suggest me another encryption method or show how the walkthrough could be adopted for Excel Visual Basic?</p> http://stackoverflow.com/questions/1466065/how-to-clear-inherited-customerrors-elements-in-web-config 0 How to clear inherited customErrors elements in Web.config? Alexander Prokofyev 2009-09-23T13:37:47Z 2009-09-23T22:52:38Z <p>As the article <a href="http://msdn.microsoft.com/en-us/library/ms178685.aspx" rel="nofollow">ASP.NET Configuration File Hierarchy and Inheritance</a> says </p> <blockquote> <p>the Web.config file for a specific Web site contains settings that apply to the Web site and inherit downward through all of the ASP.NET applications and subdirectories of the site.</p> </blockquote> <p>I have these settings for a "parent" application</p> <pre><code>&lt;customErrors mode="RemoteOnly" defaultRedirect="GenericError.htm"&gt; &lt;error statusCode="403" redirect="NoAccess.htm" /&gt; &lt;error statusCode="404" redirect="FileNotFound.htm" /&gt; &lt;error statusCode="500" redirect="InternalError.htm" /&gt; &lt;/customErrors&gt; </code></pre> <p>but need only these for a "child" application</p> <pre><code>&lt;customErrors mode="RemoteOnly" /&gt; </code></pre> <p>The article also says</p> <blockquote> <p>In collections, configuration settings are typically added to the collection via an <strong>add</strong> child element, removed by key name via a <strong>remove</strong> child element, or the entire collection can be cleared via a <strong>clear</strong> child element. An added setting in a child configuration file overrides a setting of the same key name in a parent configuration file unless duplicates are allowed.</p> </blockquote> <p>But unfortunately this is illegal for some reason</p> <pre><code>&lt;customErrors mode="RemoteOnly"&gt; &lt;clear/&gt; &lt;customErrors/&gt; </code></pre> <p>So the question is how to clear inherited customErrors elements?</p> http://stackoverflow.com/questions/1444566/enable-disable-excel-2007-combobox 0 Enable/disable Excel 2007 combobox Alexander Prokofyev 2009-09-18T13:30:37Z 2009-09-23T04:10:44Z <p>I need to prohibit user from selecting value in some Excel 2007 combobox control inserted via Developer menu by condition. Now I managed only to show/hide the control.</p> <pre><code>ActiveWorkbook.Worksheets("summary").Shapes("months").Visible = year &lt;&gt; "" </code></pre> <p>Is it possible to enable/disable it instead?</p> http://stackoverflow.com/questions/1444566/enable-disable-excel-2007-combobox/1458065#1458065 0 Answer by Alexander Prokofyev for Enable/disable Excel 2007 combobox Alexander Prokofyev 2009-09-22T04:12:40Z 2009-09-22T04:12:40Z <p>I have found what the combobox control could be disabled by</p> <pre><code>ActiveWorkbook.Worksheets("summary").DropDowns("months").Enabled = year &lt;&gt; "" </code></pre> <p>but unfortunately it won't be grayed to visually show its state.</p> http://stackoverflow.com/questions/1437529/asp-net-mvc-how-to-get-random-records-from-model/1437711#1437711 2 Answer by Alexander Prokofyev for ASP.NET MVC - How to get random records from model? Alexander Prokofyev 2009-09-17T09:26:38Z 2009-09-17T10:15:06Z <p>To randomize banners and get first four or less you could do this:</p> <pre><code>Random r = new Random(DateTime.Now.Ticks); var highlights = db.Banners.Where(h =&gt; h.Category == "highlight"). OrderBy(h =&gt; r.Next()).Take(4) </code></pre> http://stackoverflow.com/questions/255608/do-tortoisecvs-and-tortoisesvn-conflict-when-simultaneously-installed 4 Do TortoiseCVS and TortoiseSVN conflict when simultaneously installed? Alexander Prokofyev 2008-11-01T07:12:42Z 2009-09-14T08:24:55Z <p>I am interested if it's safe to install both TortoiseCVS and TortoiseSVN on the same computer? All our corporate projects are controlled by CVS, but I want to use SVN for my personal documents (and TortoiseSVN as client). Is it possible?</p> <p>Thanks!</p> http://stackoverflow.com/questions/1419618/html-actionlink/1419768#1419768 0 Answer by Alexander Prokofyev for html.actionlink Alexander Prokofyev 2009-09-14T05:07:59Z 2009-09-14T05:07:59Z <p>To render link to <strong>/Administration/NewsPublic/7</strong> you should use </p> <pre><code>&lt;%=Html.ActionLink("Read More..", "NewsPublic", "Administration", New With {.id = 7}, Nothing)%&gt; </code></pre> <p>Fifth parameter makes compiler to choose </p> <pre><code>ActionLink(string linkText, string actionName, string controllerName, object routeValues, object htmlAttributes) </code></pre> <p>extension method overload instead of </p> <pre><code>ActionLink(string linkText, string actionName, object routeValues, object htmlAttributes) </code></pre> <p>And don't forget to add parameter assignment</p> <pre><code>New With {.id = 7} </code></pre> <p>instead of </p> <pre><code>New With {.id} </code></pre> http://stackoverflow.com/questions/1409413/cannot-specify-controller-name-in-renderpartial/1409937#1409937 0 Answer by Alexander Prokofyev for Cannot specify controller name in RenderPartial Alexander Prokofyev 2009-09-11T09:26:21Z 2009-09-11T09:26:21Z <p>You could consider using <a href="http://davidhayden.com/blog/dave/archive/2009/04/04/ASPNETMVCPartialViewsHtmlRenderActionASPNETMVCFutures.aspx" rel="nofollow">Html.RenderAction in ASP.NET MVC Futures</a>.</p> http://stackoverflow.com/questions/1311753/how-to-access-the-elements-of-a-list-of-array-passed-from-the-controller-in-javas/1311809#1311809 0 Answer by Alexander Prokofyev for How to access the elements of a list of array passed from the controller in javascript?? Alexander Prokofyev 2009-08-21T13:03:20Z 2009-08-21T13:03:20Z <p>You could process elements of the list only on the server side in this scenario.</p> http://stackoverflow.com/questions/305447/using-different-web-config-in-development-and-production-environment 10 Using different Web.config in development and production environment Alexander Prokofyev 2008-11-20T14:31:35Z 2009-08-12T18:36:31Z <p>I need to use different database connection string and SMTP server address in my ASP.NET application depending on it is run in development or production environment. </p> <p>The application reads settings from Web.config file via <a href="http://msdn.microsoft.com/en-us/library/system.web.configuration.webconfigurationmanager.appsettings.aspx" rel="nofollow">WebConfigurationManager.AppSettings</a> property.</p> <p>I use Build/Publish command to deploy the application to production server via FTP and then manually replace remote Web.config with correct one.</p> <p>Is it possible somehow simplify the process of deployment? Thanks!</p> http://stackoverflow.com/questions/1257861/asp-net-mvc-add-view-outside-of-the-views-folder/1259567#1259567 0 Answer by Alexander Prokofyev for ASP.NET MVC - "Add View" Outside of the Views Folder Alexander Prokofyev 2009-08-11T10:37:21Z 2009-08-11T10:37:21Z <p>It seems this behavior is hardcoded in <em>Microsoft Visual Studio 9.0\Common7\IDE\Microsoft.VisualStudio.Web.Extensions.dll</em> file. </p> <p>I think you could:</p> <ul> <li>try reverse engineering this library;</li> <li>ask MVC team members for its source code.</li> </ul> http://stackoverflow.com/questions/1101892/is-it-possible-to-set-start-of-week-for-t-sql-datediff-function 0 Is it possible to set start of week for T-SQL DATEDIFF function? Alexander Prokofyev 2009-07-09T04:52:26Z 2009-07-09T05:59:59Z <p>I use <a href="http://msdn.microsoft.com/en-us/library/ms189794.aspx" rel="nofollow">DATEDIFF</a> function to filter records added this week only:</p> <pre><code>DATEDIFF(week, DateCreated, GETDATE()) = 0 </code></pre> <p>and I noticed what it's assumed what week starts on Sunday. But in my case I would prefer to set start of week on Monday. Is it possible somehow in T-SQL?</p> <p>Thanks!</p> <p><hr /></p> <p><strong>Update:</strong></p> <p>Below is an example showing what DATEDIFF doesn't check <a href="http://msdn.microsoft.com/en-us/library/ms187766.aspx" rel="nofollow">@@DATEFIRST</a> variable so I need another solution.</p> <pre><code>SET DATEFIRST 1; SELECT DateCreated, DATEDIFF(week, DateCreated, CAST('20090725' AS DATETIME)) AS D25, DATEDIFF(week, DateCreated, CAST('20090726' AS DATETIME)) AS D26 FROM ( SELECT CAST('20090724' AS DATETIME) AS DateCreated UNION SELECT CAST('20090725' AS DATETIME) AS DateCreated ) AS T </code></pre> <p>Output:</p> <pre><code>DateCreated D25 D26 ----------------------- ----------- ----------- 2009-07-24 00:00:00.000 0 1 2009-07-25 00:00:00.000 0 1 (2 row(s) affected) </code></pre> <p>26 Jul 2009 is Sunday, and I want DATEDIFF returns 0 in third column too. </p> http://stackoverflow.com/questions/200527/userhostaddress-gives-wrong-ips 1 UserHostAddress gives wrong IPs Alexander Prokofyev 2008-10-14T09:38:36Z 2009-07-03T13:49:18Z <p>I collect statistics on IP addresses from where users visit my site and I have noticed what there are only two IP addresses presented, 172.16.16.1 and 172.16.16.248. The property I use to determine IP address is</p> <pre><code>Request.UserHostAddress </code></pre> <p>What could be a reason of IP address information losing? All the users are from around the world, so they cann't be behind only two proxies.</p> http://stackoverflow.com/questions/1074847/asp-net-mvc-how-can-i-pass-formcollection-data-in-a-post-to-another-action/1077855#1077855 1 Answer by Alexander Prokofyev for ASP.NET MVC - How can I pass FormCollection data in a post to another Action? Alexander Prokofyev 2009-07-03T05:13:45Z 2009-07-03T05:13:45Z <p>I would prefer to disallow unauthorized user to visit "Results" page or at least to show him message "Please login first" instead of the form.</p> http://stackoverflow.com/questions/1073692/what-are-the-actionresult-acceptverbsattribute-default-http-methods/1073764#1073764 2 Answer by Alexander Prokofyev for What are the ActionResult AcceptVerbsAttribute default HTTP methods? Alexander Prokofyev 2009-07-02T11:08:42Z 2009-07-02T11:08:42Z <p>It will accept all HTTP methods. </p> <p>Look at slightly formatted fragment from ActionMethodSelector.cs (ASP.NET MVC source could be downloaded <a href="http://aspnet.codeplex.com/Release/ProjectReleases.aspx?ReleaseId=24471" rel="nofollow">here</a>):</p> <pre><code>private static List&lt;MethodInfo&gt; RunSelectionFilters(ControllerContext controllerContext, List&lt;MethodInfo&gt; methodInfos) { // remove all methods which are opting out of this request // to opt out, at least one attribute defined on the method must // return false List&lt;MethodInfo&gt; matchesWithSelectionAttributes = new List&lt;MethodInfo&gt;(); List&lt;MethodInfo&gt; matchesWithoutSelectionAttributes = new List&lt;MethodInfo&gt;(); foreach (MethodInfo methodInfo in methodInfos) { ActionMethodSelectorAttribute[] attrs = (ActionMethodSelectorAttribute[])methodInfo. GetCustomAttributes(typeof(ActionMethodSelectorAttribute), true /* inherit */); if (attrs.Length == 0) { matchesWithoutSelectionAttributes.Add(methodInfo); } else if (attrs.All(attr =&gt; attr.IsValidForRequest(controllerContext, methodInfo))) { matchesWithSelectionAttributes.Add(methodInfo); } } // if a matching action method had a selection attribute, // consider it more specific than a matching action method // without a selection attribute return (matchesWithSelectionAttributes.Count &gt; 0) ? matchesWithSelectionAttributes : matchesWithoutSelectionAttributes; } </code></pre> <p>So if there is no better matching action method with explicit attribute, action method without attributes will be used.</p> http://stackoverflow.com/questions/793687/cant-select-span-sibling Comment by Alexander Prokofyev on Can't select SPAN sibling Alexander Prokofyev 2009-11-09T11:22:04Z 2009-11-09T11:22:04Z This bug is closed in jQuery version 1.3.2 http://stackoverflow.com/questions/265293/additional-jquery-events-submitting-my-ajax-beginform/1234602#1234602 Comment by Alexander Prokofyev on Additional jQuery events submitting my Ajax.BeginForm Alexander Prokofyev 2009-10-29T12:07:20Z 2009-10-29T12:07:20Z It just works! Thank you very much. http://stackoverflow.com/questions/265293/additional-jquery-events-submitting-my-ajax-beginform/266185#266185 Comment by Alexander Prokofyev on Additional jQuery events submitting my Ajax.BeginForm Alexander Prokofyev 2009-10-29T12:03:46Z 2009-10-29T12:03:46Z Somebody downvoted this answer because you should comment instead. http://stackoverflow.com/questions/891603/html-beginform-loses-routevalues-with-formmethod-get/1631477#1631477 Comment by Alexander Prokofyev on Html.BeginForm loses routeValues with FormMethod.GET Alexander Prokofyev 2009-10-28T05:51:23Z 2009-10-28T05:51:23Z Interesting why ASP.NET MVC HTML helper BeginForm() doesn't render hidden fields itself when GET method is chosen? http://stackoverflow.com/questions/1628704/jqgrid-call-asp-net-mvc-controller-action-lost-web-application-name/1628888#1628888 Comment by Alexander Prokofyev on jqGrid call ASP.NET MVC controller action lost web application name Alexander Prokofyev 2009-10-28T05:45:16Z 2009-10-28T05:45:16Z Could you place this Javascript code into ASPX file, not separate JS file? http://stackoverflow.com/questions/125997/how-to-enable-disable-menuitem-and-toolbutton-together/127214#127214 Comment by Alexander Prokofyev on How to Enable/Disable MenuItem and ToolButton together Alexander Prokofyev 2009-10-14T10:36:10Z 2009-10-14T10:36:10Z You never use eventName parameter in RegisterControl method. Is it intended? http://stackoverflow.com/questions/1529417/asp-net-mvc-getting-last-modified-date-fileinfo-of-view Comment by Alexander Prokofyev on ASP.NET MVC getting last modified date/FileInfo of View Alexander Prokofyev 2009-10-07T05:06:32Z 2009-10-07T05:06:32Z There is no default view for controller. Controller can show any view calling View(&quot;view_name&quot;). http://stackoverflow.com/questions/1466065/how-to-clear-inherited-customerrors-elements-in-web-config/1468932#1468932 Comment by Alexander Prokofyev on How to clear inherited customErrors elements in Web.config? Alexander Prokofyev 2009-10-06T11:57:09Z 2009-10-06T11:57:09Z I use ASP.NET MVC HandleErrorAttribute to set custom error page. http://stackoverflow.com/questions/1489934/where-can-i-get-a-good-vertical-menu-for-asp-net-mvc/1490005#1490005 Comment by Alexander Prokofyev on Where can I get a good vertical menu for asp.net mvc Alexander Prokofyev 2009-09-29T04:30:16Z 2009-09-29T04:30:16Z Liked iPod-style menu very much. Thanks! http://stackoverflow.com/questions/1476061/mvc-view-and-javascript-file/1476178#1476178 Comment by Alexander Prokofyev on MVC View and JavaScript file Alexander Prokofyev 2009-09-25T08:53:19Z 2009-09-25T08:53:19Z Interesting info about HttpNotFoundHandler. Thanks! http://stackoverflow.com/questions/1470939/encrypting-and-decrypting-strings-in-excel/1471093#1471093 Comment by Alexander Prokofyev on Encrypting and decrypting strings in Excel Alexander Prokofyev 2009-09-24T11:48:45Z 2009-09-24T11:48:45Z Thank you very much! Very detailed explanation and some useful links. Wish all answers here were like yours. http://stackoverflow.com/questions/1373944/how-to-disable-elmah-memory-logging Comment by Alexander Prokofyev on How to disable Elmah memory logging? Alexander Prokofyev 2009-09-23T10:55:51Z 2009-09-23T10:55:51Z Why do you think Elmah is logging to memory even without corresponding line in its config? http://stackoverflow.com/questions/1444566/enable-disable-excel-2007-combobox/1463905#1463905 Comment by Alexander Prokofyev on Enable/disable Excel 2007 combobox Alexander Prokofyev 2009-09-23T04:39:30Z 2009-09-23T04:39:30Z I beleive Shape object doesn't have Enabled property in Excel so Shapes(1).ControlFormat.Enabled should be used. Thanks! http://stackoverflow.com/questions/1437529/asp-net-mvc-how-to-get-random-records-from-model/1437711#1437711 Comment by Alexander Prokofyev on ASP.NET MVC - How to get random records from model? Alexander Prokofyev 2009-09-17T10:17:14Z 2009-09-17T10:17:14Z I have changed the code a bit. Check it. http://stackoverflow.com/questions/1437529/asp-net-mvc-how-to-get-random-records-from-model/1437711#1437711 Comment by Alexander Prokofyev on ASP.NET MVC - How to get random records from model? Alexander Prokofyev 2009-09-17T10:16:24Z 2009-09-17T10:16:24Z Well, you should use random seed based on timer when creating Random object.