Jeromy Irvine

2,073
Reputation
327 views

Registered User

Name Jeromy Irvine
Member for 1 year
Seen yesterday
Website
Location Pittsburgh, PA, USA
Age 29
I am a C# / ASP.Net developer with experience in product configuration, identity management, security, and usability. I enjoy anything that allows me to learn something new about programming and people. My current projects include creating a workflow back-end for a web-based identity management system.
Nov
20
accepted Is there any difference between assemblies compiled from WebApplication and ClassLibrary projects?
Nov
18
answered Is there any difference between assemblies compiled from WebApplication and ClassLibrary projects?
Nov
17
accepted C# - A class-design problem - Loading property List.
Nov
17
answered C# - A class-design problem - Loading property List.
Nov
17
revised What is meant by the term “dirty object”?
Grammar and structure update for easier reading
Nov
13
accepted How to create a bitmap programmatically in C#
Nov
12
comment Inserting to the database while uploading a file
The uploaded file is part of the HTTP post. The post, and thus the upload, is going to take place before any server code is run, and that includes the thread-spawning code. Spawning a thread to do the database insert could actually result in the file being uploaded and saved to disk before the insert is completed. That takes the OP even farther from his desired behavior.
Nov
12
comment Inserting to the database while uploading a file
@Walter - This might help get you started asp.net/learn/ajax-videos
Nov
12
comment Inserting to the database while uploading a file
Sorry if I keep repeating myself on this question, but this is not a threading issue. As such, threading is not the solution.
Nov
12
comment Inserting to the database while uploading a file
This is not a threading issue, it's an HTTP post issue. The code to run the database insert in a thread is still going to fire after the file is already uploaded as part of the HTTP post.
Nov
12
answered Inserting to the database while uploading a file
Nov
12
answered How to create a bitmap programmatically in C#
Nov
10
awarded  Notable Question
Nov
3
comment error when passing a reference to a derived object in a method
Using ref is what would allow a different object to come back. If you read the link in my answer, it explains it far better than any of us can in a comment.
Nov
3
comment error when passing a reference to a derived object in a method
Indeed. I added that clarification to my answer.
Nov
3
revised error when passing a reference to a derived object in a method
Added link
Nov
3
answered error when passing a reference to a derived object in a method
Sep
16
awarded  Yearling
Aug
18
comment How many lines should a method typically have?
Anybody saying that a method should fit on one screen just makes me laugh. I have 4 different monitors/resolutions that I use in any given week while coding. So, is one screen-full 39, 47, 55, or 76 lines of code?
Aug
15
answered Do “expert” programmers and designers really exist
Aug
5
awarded  
Aug
1
comment Is this ASP.NET Inherited Shared Function practice acceptable?
There's no language mechanism to allow forced overriding of shared members. The workaround is to rethink your design so the code that works with the forms either doesn't care what type they are, or to use helper functions, or perhaps factory to create handlers that can deal with each type of form as needed.
Aug
1
answered Is this ASP.NET Inherited Shared Function practice acceptable?
Jul
30
comment DataTable.DefaultView.Sort Doesn’t Sort
OK, I updated the answer to account for the strongly typed row. This should hopefully do the trick for you.
Jul
30
revised DataTable.DefaultView.Sort Doesn’t Sort
Updated code; added 6 characters in body
Jul
30
revised DataTable.DefaultView.Sort Doesn’t Sort
added 12 characters in body
Jul
30
comment DataTable.DefaultView.Sort Doesn’t Sort
@Mike - In that case, my updated answer should work.
Jul
30
comment DataTable.DefaultView.Sort Doesn’t Sort
Does ActionLogStartEndRow derive from DataRow?
Jul
30
answered DataTable.DefaultView.Sort Doesn’t Sort
Jul
29
answered Why are plain text passwords bad, and how do I convince my boss that his treasured websites are in jeopardy?
Jul
9
awarded  Enlightened
Jul
9
awarded  Nice Answer
Jun
16
accepted Why does ‘Submissions.Where(s => (false && s.Status == Convert.ToInt16(””)))’ raise an FormatException?
Jun
16
comment Why does ‘Submissions.Where(s => (false && s.Status == Convert.ToInt16(””)))’ raise an FormatException?
@hwschuur - See my answer for an explanation of why one works and the other doesn't.
Jun
16
answered Why does ‘Submissions.Where(s => (false && s.Status == Convert.ToInt16(””)))’ raise an FormatException?
Jun
14
revised c# regular expression problem
added 1 characters in body