jedidja

956
Reputation
67 views

Registered User

Name jedidja
Member for 1 year
Seen yesterday
Website
Location PEI, Canada
Age 30
TDD-enthusiast and budding chicken farmer.
Nov
23
asked How do I unit test a controller action that uses ther Controller.User variable?
Nov
18
awarded  Notable Question
Oct
30
revised How can a page in IE render differently between Cassini and IIS7?
deleted 232 characters in body
Oct
30
revised How can a page in IE render differently between Cassini and IIS7?
added 196 characters in body; added 217 characters in body; added 89 characters in body
Oct
30
revised How can a page in IE render differently between Cassini and IIS7?
added 144 characters in body
Oct
30
revised How can a page in IE render differently between Cassini and IIS7?
added 15 characters in body
Oct
30
asked How can a page in IE render differently between Cassini and IIS7?
Oct
26
comment Why is the wrong field value shown in the error message when using jQuery (remote) validation?
Oh..thanks I wasn't sure which items I could use to test that to make the error happen with them.
Oct
26
revised Why is the wrong field value shown in the error message when using jQuery (remote) validation?
added 66 characters in body
Oct
26
revised Why is the wrong field value shown in the error message when using jQuery (remote) validation?
edited title
Oct
26
asked Why is the wrong field value shown in the error message when using jQuery (remote) validation?
Oct
26
comment What is the “problem” with a GET JSON request?
Very interesting idea... do you have any links to which browsers might try to cache a GET result and under what circumstances?
Oct
26
asked What is the “problem” with a GET JSON request?
Oct
23
revised What is the proper way to do multi-parameter AJAX form validation with jQuery and ASP.NET MVC?
added 176 characters in body; added 18 characters in body
Oct
23
comment What is the proper way to do multi-parameter AJAX form validation with jQuery and ASP.NET MVC?
If I make a GET to /Home/IsValidEmail/{companyId}/{customerNumber} it will not call the method I have listed there unless I update the routing table (to the best of my knowledge..it certainly doesn't seem to work). I will search for the Validation remote attribute for more info.
Oct
23
asked What is the proper way to do multi-parameter AJAX form validation with jQuery and ASP.NET MVC?
Oct
21
awarded  Nice Question
Oct
15
comment How can I make JsonResult return an array of arrays (without field names) rather than an array of objects?
Also for future reference, I ended up returning ContentResult from the method. Trying to return Json() of a string leaves it in quotes and flot is looking for an array. return Content(result, "json")
Oct
15
comment How can I make JsonResult return an array of arrays (without field names) rather than an array of objects?
builder.AppendFormat in case anyone tries to copy/paste this code later :)
Oct
15
comment How can I make JsonResult return an array of arrays (without field names) rather than an array of objects?
I figured that with so many Helpers in MVC there might be an option to tweak somewhere :)
Oct
15
asked How can I make JsonResult return an array of arrays (without field names) rather than an array of objects?
Oct
15
comment Sql server error : The INSERT statement conflicted with the CHECK constraint
Thanks..that was very helpful :) I don't know why the constraint I was looking for doesn't show up in the same table, but at least when VS throws the SQL exception I can look up the check constraint in Managmeent Studio
Oct
12
comment What is the equivalent of ‘describe table’ in MSSQL?
Thanks - I was about to post the same question with T-SQL instead of MSSQL.
Oct
9
comment Why would a WCF webservice hosted in IIS randomly stop responding?
This link can be handy: slideshare.net/blowdart/10-tricks-and-tips-for-wcf/… .. Slide 15 shows a similar method of disposing.
Oct
9
comment Why would a WCF webservice hosted in IIS randomly stop responding?
Mark - can you recommend any good reading materials on the subject? Also, are there any best practices when it comes to wrapping this try/finally/try in some sort of generic manner? Seems like a lot of boilerplate code that could possibly be simplified.
Oct
9
comment Why would a WCF webservice hosted in IIS randomly stop responding?
d91-jal Yes .. the MVC website consumes a WCF service which will be hosted on several remote (customer) sites.
Oct
9
comment Why would a WCF webservice hosted in IIS randomly stop responding?
marc_s Do you have any more information on why hosting WCF in IIS is suboptimal? We have to deploy this service at client's site and the easiest way to get them to agree seems to be hosting in IIS.
Oct
9
asked Why would a WCF webservice hosted in IIS randomly stop responding?
Oct
6
comment ELMAH and Exception Management in ASP.NET MVC
That link doesn't work either :) It keeps moving...
Oct
6
comment Using a global (dumb) error page for all ASP.NET MVC errors?
This didn't seem to help.
Sep
29
answered What is a CAPTCHA that is compatible with ASP.NET MVC ?
Sep
23
comment How do I create a facade for identical LINQ 2 SQL tables?
I've read about inheritance and it's definitely not the way to go for this situation. I suppose using Dynamic LINQ might work with GetTable() and then executing the commands against that.
Sep
23
comment How do I create a facade for identical LINQ 2 SQL tables?
Will that work for the updated example? It looks like I have to switch off two fields instead of just one.
Sep
23
revised How do I create a facade for identical LINQ 2 SQL tables?
Realised situtation is slightly more complex than originally thought; deleted 4 characters in body
Sep
23
asked How do I create a facade for identical LINQ 2 SQL tables?
Sep
16
comment When to use strongly typed views?
Thanks for sharing :) Going to try to use your approach as well.
Sep
16
comment When to use strongly typed views?
Most of your update makes sense until have code with the ControllerResponse type - where does this come from? :)
Sep
16
awarded  Yearling
Sep
15
accepted MSTest run fails because source assembly is not trusted
Sep
15
comment When to use strongly typed views?
Hmm that sounds very handy. All our views are strongly typed and we have created our own MembershipProvider and MembershipUser. How did you modify the master page to hang onto that information?
Sep
2
awarded  Nice Answer
Aug
26
awarded  Popular Question
Jul
14
awarded  Popular Question
Jul
13
comment TFS: How can you Undo Checkout of Unmodified files in a batch file
Awesome stuff..very handy :)