User Alexander Prokofyev - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T03:46:33Zhttp://stackoverflow.com/feeds/user/11256http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/287060/sheduled-run-of-stored-procedure-on-ms-sql-server2Sheduled run of stored procedure on MS SQL serverAlexander Prokofyev2008-11-13T14:25:43Z2009-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-stdpair11What is C# analog of C++ std::pair?Alexander Prokofyev2008-10-03T09:33:06Z2009-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-condition1How to disable custom validation method on conditionAlexander Prokofyev2009-04-29T05:20:42Z2009-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 <= payment_amount <= cost_of_car*:</p>
<pre><code>$.validator.addMethod("testMaxAmount", function()
{
return $("#cost_of_car").val() - 0 >= $("#payment_amount").val() - 0;
}, "Can't be more than cost_of_car");
$.validator.addMethod("testMinAmount", function()
{
return $("#cost_of_car").val() * 0.4 <= $("#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-form1jQuery Validation plugin attaches only to the first formAlexander Prokofyev2009-11-05T11:29:34Z2009-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-validation0Why ASP.NET MVC 2 will have its own client-side validation?Alexander Prokofyev2009-11-05T06:45:56Z2009-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#16786391Answer by Alexander Prokofyev for User HTML Helper to populate a DropDown listAlexander Prokofyev2009-11-05T06:06:39Z2009-11-05T06:06:39Z<p>Try using</p>
<pre><code><%= Html.DropDownList("User.Affiliate",
new SelectList(UserFacade.Instance.SelectAffiliates()))%>
</code></pre>
http://stackoverflow.com/questions/1678137/how-can-i-change-the-mvc-ajax-form-parameters-in-the-posted-to-controller/1678629#16786291Answer by Alexander Prokofyev for How can I change the mvc ajax form parameters in the posted-to controller?Alexander Prokofyev2009-11-05T06:02:07Z2009-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-get1Html.BeginForm loses routeValues with FormMethod.GETAlexander Prokofyev2009-05-21T06:13:54Z2009-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><%
using (Html.BeginForm("TestAction", "TestController", new { test = 123 },
FormMethod.Get))
{
Response.Write("<input type='submit'>");
};
%>
</code></pre>
<p>gives such HTML </p>
<pre><code><form action="/TestController/TestAction?test=123" method="get">
<input type='submit'>
</form>
</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#16288881Answer by Alexander Prokofyev for jqGrid call ASP.NET MVC controller action lost web application nameAlexander Prokofyev2009-10-27T05:17:10Z2009-10-27T05:17:10Z<p>Use this code instead:</p>
<pre><code>jQuery("#sandgrid").jqGrid({
url: '<%= Url.Action("Search", "Deposit") %>?startDate=' + startDate + '&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-installation5Lightweight SQL database which doesn't require installationAlexander Prokofyev2008-11-07T05:39:22Z2009-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#15296180Answer by Alexander Prokofyev for ViewUserControl containing ViewPageAlexander Prokofyev2009-10-07T05:18:20Z2009-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><% Html.RenderPartial("partial_view_name", this); %>
</code></pre>
http://stackoverflow.com/questions/301147/css-way-to-horizontally-align-table2CSS way to horizontally align tableAlexander Prokofyev2008-11-19T06:17:47Z2009-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><table width="200" align="center">
</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#14905460Answer by Alexander Prokofyev for MVC Model Binding: Using a name different from the QueryString for the Method ParameterAlexander Prokofyev2009-09-29T04:18:55Z2009-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-functiona5Should project manager ask how much time will it take to implement some functionality?Alexander Prokofyev2009-02-19T08:45:00Z2009-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#14761811Answer by Alexander Prokofyev for MVC View and JavaScript fileAlexander Prokofyev2009-09-25T08:52:36Z2009-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><script src="<%= Url.Content("~/Scripts/jquery-1.3.2.js") %>"
</code></pre>
http://stackoverflow.com/questions/1470939/encrypting-and-decrypting-strings-in-excel1Encrypting and decrypting strings in ExcelAlexander Prokofyev2009-09-24T10:53:47Z2009-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-config0How to clear inherited customErrors elements in Web.config?Alexander Prokofyev2009-09-23T13:37:47Z2009-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><customErrors mode="RemoteOnly" defaultRedirect="GenericError.htm">
<error statusCode="403" redirect="NoAccess.htm" />
<error statusCode="404" redirect="FileNotFound.htm" />
<error statusCode="500" redirect="InternalError.htm" />
</customErrors>
</code></pre>
<p>but need only these for a "child" application</p>
<pre><code><customErrors mode="RemoteOnly" />
</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><customErrors mode="RemoteOnly">
<clear/>
<customErrors/>
</code></pre>
<p>So the question is how to clear inherited customErrors elements?</p>
http://stackoverflow.com/questions/1444566/enable-disable-excel-2007-combobox0Enable/disable Excel 2007 comboboxAlexander Prokofyev2009-09-18T13:30:37Z2009-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 <> ""
</code></pre>
<p>Is it possible to enable/disable it instead?</p>
http://stackoverflow.com/questions/1444566/enable-disable-excel-2007-combobox/1458065#14580650Answer by Alexander Prokofyev for Enable/disable Excel 2007 comboboxAlexander Prokofyev2009-09-22T04:12:40Z2009-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 <> ""
</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#14377112Answer by Alexander Prokofyev for ASP.NET MVC - How to get random records from model?Alexander Prokofyev2009-09-17T09:26:38Z2009-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 => h.Category == "highlight").
OrderBy(h => r.Next()).Take(4)
</code></pre>
http://stackoverflow.com/questions/255608/do-tortoisecvs-and-tortoisesvn-conflict-when-simultaneously-installed4Do TortoiseCVS and TortoiseSVN conflict when simultaneously installed?Alexander Prokofyev2008-11-01T07:12:42Z2009-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#14197680Answer by Alexander Prokofyev for html.actionlinkAlexander Prokofyev2009-09-14T05:07:59Z2009-09-14T05:07:59Z<p>To render link to <strong>/Administration/NewsPublic/7</strong> you should use </p>
<pre><code><%=Html.ActionLink("Read More..", "NewsPublic", "Administration",
New With {.id = 7}, Nothing)%>
</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#14099370Answer by Alexander Prokofyev for Cannot specify controller name in RenderPartialAlexander Prokofyev2009-09-11T09:26:21Z2009-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#13118090Answer by Alexander Prokofyev for How to access the elements of a list of array passed from the controller in javascript??Alexander Prokofyev2009-08-21T13:03:20Z2009-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-environment10Using different Web.config in development and production environmentAlexander Prokofyev2008-11-20T14:31:35Z2009-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#12595670Answer by Alexander Prokofyev for ASP.NET MVC - "Add View" Outside of the Views FolderAlexander Prokofyev2009-08-11T10:37:21Z2009-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-function0Is it possible to set start of week for T-SQL DATEDIFF function?Alexander Prokofyev2009-07-09T04:52:26Z2009-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-ips1UserHostAddress gives wrong IPsAlexander Prokofyev2008-10-14T09:38:36Z2009-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#10778551Answer by Alexander Prokofyev for ASP.NET MVC - How can I pass FormCollection data in a post to another Action?Alexander Prokofyev2009-07-03T05:13:45Z2009-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#10737642Answer by Alexander Prokofyev for What are the ActionResult AcceptVerbsAttribute default HTTP methods?Alexander Prokofyev2009-07-02T11:08:42Z2009-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<MethodInfo> RunSelectionFilters(ControllerContext
controllerContext, List<MethodInfo> 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<MethodInfo> matchesWithSelectionAttributes = new List<MethodInfo>();
List<MethodInfo> matchesWithoutSelectionAttributes = new List<MethodInfo>();
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 => 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 > 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-siblingComment by Alexander Prokofyev on Can't select SPAN siblingAlexander Prokofyev2009-11-09T11:22:04Z2009-11-09T11:22:04ZThis bug is closed in jQuery version 1.3.2http://stackoverflow.com/questions/265293/additional-jquery-events-submitting-my-ajax-beginform/1234602#1234602Comment by Alexander Prokofyev on Additional jQuery events submitting my Ajax.BeginFormAlexander Prokofyev2009-10-29T12:07:20Z2009-10-29T12:07:20ZIt just works! Thank you very much.http://stackoverflow.com/questions/265293/additional-jquery-events-submitting-my-ajax-beginform/266185#266185Comment by Alexander Prokofyev on Additional jQuery events submitting my Ajax.BeginFormAlexander Prokofyev2009-10-29T12:03:46Z2009-10-29T12:03:46ZSomebody downvoted this answer because you should comment instead.http://stackoverflow.com/questions/891603/html-beginform-loses-routevalues-with-formmethod-get/1631477#1631477Comment by Alexander Prokofyev on Html.BeginForm loses routeValues with FormMethod.GETAlexander Prokofyev2009-10-28T05:51:23Z2009-10-28T05:51:23ZInteresting 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#1628888Comment by Alexander Prokofyev on jqGrid call ASP.NET MVC controller action lost web application nameAlexander Prokofyev2009-10-28T05:45:16Z2009-10-28T05:45:16ZCould 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#127214Comment by Alexander Prokofyev on How to Enable/Disable MenuItem and ToolButton togetherAlexander Prokofyev2009-10-14T10:36:10Z2009-10-14T10:36:10ZYou never use eventName parameter in RegisterControl method. Is it intended?http://stackoverflow.com/questions/1529417/asp-net-mvc-getting-last-modified-date-fileinfo-of-viewComment by Alexander Prokofyev on ASP.NET MVC getting last modified date/FileInfo of ViewAlexander Prokofyev2009-10-07T05:06:32Z2009-10-07T05:06:32ZThere is no default view for controller. Controller can show any view calling View("view_name").http://stackoverflow.com/questions/1466065/how-to-clear-inherited-customerrors-elements-in-web-config/1468932#1468932Comment by Alexander Prokofyev on How to clear inherited customErrors elements in Web.config?Alexander Prokofyev2009-10-06T11:57:09Z2009-10-06T11:57:09ZI 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#1490005Comment by Alexander Prokofyev on Where can I get a good vertical menu for asp.net mvcAlexander Prokofyev2009-09-29T04:30:16Z2009-09-29T04:30:16ZLiked iPod-style menu very much. Thanks!http://stackoverflow.com/questions/1476061/mvc-view-and-javascript-file/1476178#1476178Comment by Alexander Prokofyev on MVC View and JavaScript fileAlexander Prokofyev2009-09-25T08:53:19Z2009-09-25T08:53:19ZInteresting info about HttpNotFoundHandler. Thanks!http://stackoverflow.com/questions/1470939/encrypting-and-decrypting-strings-in-excel/1471093#1471093Comment by Alexander Prokofyev on Encrypting and decrypting strings in ExcelAlexander Prokofyev2009-09-24T11:48:45Z2009-09-24T11:48:45ZThank 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-loggingComment by Alexander Prokofyev on How to disable Elmah memory logging?Alexander Prokofyev2009-09-23T10:55:51Z2009-09-23T10:55:51ZWhy 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#1463905Comment by Alexander Prokofyev on Enable/disable Excel 2007 comboboxAlexander Prokofyev2009-09-23T04:39:30Z2009-09-23T04:39:30ZI 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#1437711Comment by Alexander Prokofyev on ASP.NET MVC - How to get random records from model?Alexander Prokofyev2009-09-17T10:17:14Z2009-09-17T10:17:14ZI have changed the code a bit. Check it.http://stackoverflow.com/questions/1437529/asp-net-mvc-how-to-get-random-records-from-model/1437711#1437711Comment by Alexander Prokofyev on ASP.NET MVC - How to get random records from model?Alexander Prokofyev2009-09-17T10:16:24Z2009-09-17T10:16:24ZWell, you should use random seed based on timer when creating Random object.