User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T13:57:21Zhttp://stackoverflow.com/feeds/user/10479http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1587743/asp-net-mvc-different-validation-rules-for-different-actions2asp.net mvc different validation rules for different actionsdavidinbcn2009-10-19T09:32:38Z2009-11-03T21:24:47Z
<p>Hello,</p>
<p>What is the best practice for validating my model for different actions, for example, different validation rules for creating and deleting?</p>
<p>Thanks!</p>
<p>Clarification: I think this needs some clarification because the answers don't seem to be addressing the question.</p>
<p>For example,</p>
<p>Create Person
Validates that has name, age and email is not in use
Delete Person
Validates that the Person isn't a Parent. Business logic dictates that Parents can't be eliminated</p>
<p>How do I have these two different validation scenarios?</p>
http://stackoverflow.com/questions/757394/in-ie6-when-i-display-a-modal-a-dropdownlist-from-the-parent-page-is-visible-on/1164569#11645690Answer by davidinbcn for In IE6, when I display a modal, a dropdownlist from the parent page is visible on top of the modeldavidinbcn2009-07-22T11:13:05Z2009-07-22T11:13:05Z<p>A quick fix is to hide all the dropdowns when you call the modal and show them again when you close it.</p>
http://stackoverflow.com/questions/1158968/using-subsonic-simplerepository-the-partial-void-isvalid-is-never-called1Using Subsonic SimpleRepository, the partial void IsValid is never calleddavidinbcn2009-07-21T12:46:37Z2009-07-21T12:46:37Z
<p>Hi, when using the SimpleRepository in SubSonic 3, the partial void OnValidate is never called. When and where should I be doing validations?</p>
http://stackoverflow.com/questions/1025878/unit-testing-local-and-global-resources-in-asp-net-mvc0Unit-Testing local and global resources in asp.net mvcdavidinbcn2009-06-22T07:25:28Z2009-07-21T08:35:14Z
<p>I have a class that wraps the GetGlobalResourceObject and GetLocalResourceObjet so they can be used easily in MVC. The model validation classes then load the error messages dynamically from resource files. The problem is unit testing. The code uses "~/", and while everything functions correctly when the solution is run, I cannot see how to make the unit tests because I always receive the following error "System.Web.HttpException: The application relative virtual path '~/' cannot be made absolute, because the path to the application is not known."</p>
<p>The code that throws the exception is the following, used to evaluate an expression and return a global resource object.</p>
<pre><code>Private Function GetExpressionFields(ByVal expression As String) As ResourceExpressionFields
Return GetExpressionFields(expression, "~/")
End Function
Private Function GetExpressionFields(ByVal expression As String, ByVal path As String) As ResourceExpressionFields
Dim context As New ExpressionBuilderContext(path)
Dim resource_builder As New ResourceExpressionBuilder()
Dim fields As ResourceExpressionFields
fields = DirectCast(resource_builder.ParseExpression(expression, GetType(String), context), ResourceExpressionFields)
Return fields
End Function
</code></pre>
<p>Any ideas on how to test this and other code that uses resource files? </p>
http://stackoverflow.com/questions/1157786/linq-to-sql-identity-foreign-key-insertonsubmit0linq to sql @identity foreign key insertonsubmitdavidinbcn2009-07-21T07:46:08Z2009-07-21T08:14:30Z
<p>Hi, I thought you could do this with linq, but it always throws a foreign key error and the ContactType.id is 0. Is it necessary to call SubmitChanges after inserting the new ContactType, or am I missing something basic?</p>
<pre><code>Dim ct As New ContactType
ct.name = "supervisor"
db.ContactTypes.InsertOnSubmit(ct)
Dim c As New Contact
c.ContactTypeId = ct.id
c.first_name = "fname"
c.last_name = "lname"
db.contacts.InsertOnSubmit(c)
db.SubmitChanges()
</code></pre>
http://stackoverflow.com/questions/1157786/linq-to-sql-identity-foreign-key-insertonsubmit/1157903#11579031Answer by davidinbcn for linq to sql @identity foreign key insertonsubmitdavidinbcn2009-07-21T08:14:30Z2009-07-21T08:14:30Z<p>Answered by <a href="http://stackoverflow.com/users/24231/lucas">lucas</a> in this <a href="http://stackoverflow.com/questions/875653/linq2sql-insert-records-to-related-tables">question</a></p>
<p>It is necessary to set the ContactType object, not the foreign key value.</p>
<pre><code>Dim ct As New ContactType
ct.name = "supervisor"
db.ContactTypes.InsertOnSubmit(ct)
Dim c As New Contact
c.ContactType = ct 'this is the important line
c.first_name = "fname"
c.last_name = "lname"
db.contacts.InsertOnSubmit(c)
db.SubmitChanges()
</code></pre>
<p>Thank you Lucas!</p>
http://stackoverflow.com/questions/1031227/javascript-popup-window-doesnt-gain-focus-after-first-load-in-firefox/1031520#10315200Answer by davidinbcn for Javascript popup window doesn't gain focus after first load in Firefoxdavidinbcn2009-06-23T09:27:46Z2009-06-23T09:27:46Z<p>This seems to work:</p>
<p>make w a global variable. When the popup link is clicked, check if w exists and if it exists, close it and open the other popup...</p>
<pre><code><script type="text/javascript">
var w;
function openPopup(purl)
{
wndAttr = "width=500,height=400,left=100,top=100";
if(w)
{
w.close();
}
w = window.open(purl, 'popup_test', wndAttr);
w.focus();
}
</script>
</code></pre>
http://stackoverflow.com/questions/67916/lambda-expressions-in-vb-net2lambda expressions in vb.netdavidinbcn2008-09-15T23:24:17Z2009-05-21T13:11:05Z
<p>Hi, I have something that is driving me absolutely crazy...</p>
<pre><code> Public Function GetAccountGroups() As IList(Of AccountGroup)
Dim raw_account_groups As IList(Of AccountGroup)
raw_account_groups = _repository.GetAccountGroups().ToList()
Dim parents = (From ag In raw_account_groups _
Where ag.parent_id = 0 _
Select ag).ToList()
parents(0).sub_account_groups = (From sag In raw_account_groups _
Where sag.parent_id = 0 _
Select sag).ToList()
Dim sql_func As Func(Of AccountGroup, List(Of AccountGroup)) = Function(p) _
(From sag In raw_account_groups _
Where sag.parent_id = p.id _
Select sag).ToList()
parents.ForEach(Function(p) p.sub_account_groups = sql_func(p))
Return parents
End Function
</code></pre>
<p>The line "parents.ForEach(Function(p) p.sub_account_groups = sql_func(p))" has this error...</p>
<p>Operator '=' is not defined for types 'System.Collections.Generic.IList(Of st.data.AccountGroup)' and 'System.Collections.Generic.List(Of st.data.AccountGroup)'. </p>
<p>but I really can't see how it is any different from this code from Rob Connery</p>
<pre><code>public IList<Category> GetCategories() {
IList<Category> rawCategories = _repository.GetCategories().ToList(); var parents = (from c in rawCategories
where c.ParentID == 0
select c).ToList();
parents.ForEach(p =>
{
p.SubCategories = (from subs in rawCategories
where subs.ParentID == p.ID
select subs).ToList();
});
return parents;
}
</code></pre>
<p>which compiles perfectly... what am I doing incorrectly?</p>
<p>Thanks in advance,
David</p>
http://stackoverflow.com/questions/50315/how-do-you-allow-multiple-file-uploads-on-an-internal-windows-authentication-intr/70521#705211Answer by davidinbcn for How do you allow multiple file uploads on an internal windows-authentication intranet?davidinbcn2008-09-16T08:58:25Z2008-09-16T08:58:25Z<p>I don't think there is any work around for the integrated windows authentication. What you could possibly do is save the files to a generic unprotected folder and, in the case of swfupload, use a handler to move the file when its fully uploaded</p>
http://stackoverflow.com/questions/70123/re-using-soft-deleted-records/70243#702430Answer by davidinbcn for Re-using soft deleted recordsdavidinbcn2008-09-16T08:02:51Z2008-09-16T08:02:51Z<p>Hi, I've done this with user tables, where the email is a unique constraint. If someone cancels there account, their information is still needed for referential integrity, so what I to is set is_deteled to true, and add '_deleted' to the email field. In this way, if the user decides to sign up again in the future, there is no problem for the user and the unique constraint is not broken.</p>
<p>I think soft delete is good in some situations. For example, if someone deleted their account from this site and you delete their user then all their posts and answers would be lost. I think it is much better to soft delete and display their user as "deleted user" or something similar... oh, I also believe in divorced primary keys</p>
http://stackoverflow.com/questions/4034/multiple-languages-in-an-asp-net-mvc-application/68081#680817Answer by davidinbcn for Multiple languages in an ASP.NET MVC application?davidinbcn2008-09-16T00:00:12Z2008-09-16T00:00:12Z<p>I found this resource to be very helpful
<a href="http://blog.eworldui.net/post/2008/05/ASPNET-MVC---Localization.aspx" rel="nofollow">http://blog.eworldui.net/post/2008/05/ASPNET-MVC---Localization.aspx</a></p>
<p>Its a wrapper round the <strong>HttpContext.Current.GetGlobalResourceString</strong> and <strong>HttpContext.Current.GetLocalResourceString</strong> that allows you to call the resources like this...</p>
<pre><code>// default global resource
Html.Resource("GlobalResource, ResourceName")
// global resource with optional arguments for formatting
Html.Resource("GlobalResource, ResourceName", "foo", "bar")
// default local resource
Html.Resource("ResourceName")
// local resource with optional arguments for formatting
Html.Resource("ResourceName", "foo", "bar")
</code></pre>
<p>The only problem I found is that controllers don't have access to local resouce strings.</p>
http://stackoverflow.com/questions/1936/how-to-redirecttoaction-in-asp-net-mvc-without-losing-request-data/68051#680511Answer by davidinbcn for How to RedirectToAction in ASP.NET MVC without losing request datadavidinbcn2008-09-15T23:53:18Z2008-09-15T23:53:18Z<p>I use TempData as well, the problem as I understand it, with your solution Deeno is that if the user was to refresh the page after posting invalid data they would receive a "Would you like to resubmit the form data" confirmation. Using the TempData solution as Graphain says eliminates this problem.</p>
http://stackoverflow.com/questions/1623/folders-or-projects-in-a-visual-studio-solution/68009#680090Answer by davidinbcn for Folders or Projects in a Visual Studio Solution?davidinbcn2008-09-15T23:45:06Z2008-09-15T23:45:06Z<p>I really think it is better to split the project as well, but it all depends on the size of the project and the number of people working on it. For larger projects, I have a projects for
data access (models)
services
front end
tests
I got the model from Rob Connery and his storefront application... seems to work really well. <a href="http://blog.wekeroad.com/mvc-storefront/" rel="nofollow">http://blog.wekeroad.com/mvc-storefront/</a></p>
http://stackoverflow.com/questions/1587743/asp-net-mvc-different-validation-rules-for-different-actions/1670217#1670217Comment by on asp.net mvc different validation rules for different actions2009-11-04T13:53:43Z2009-11-04T13:53:43ZGreat answer. Thankshttp://stackoverflow.com/questions/1025878/unit-testing-local-and-global-resources-in-asp-net-mvc/1145221#1145221Comment by on Unit-Testing local and global resources in asp.net mvc2009-07-20T11:05:14Z2009-07-20T11:05:14ZThanks, it's not an exact answer to my problem, but it works great!http://stackoverflow.com/questions/67916/lambda-expressions-in-vb-net/68839#68839Comment by on lambda expressions in vb.net2008-09-16T06:15:50Z2008-09-16T06:15:50Zbeautiful! cheers