David Lay

522
reputation
83 views

Registered User

name David Lay
member for 1 year
seen 12 hours ago
website
location Stgo, Chile
age 27

Dot net all the way.
VB and C#

Learning:

  • Continuous Integration
  • ASPNET MVC
  • Unit Testing
  • XAML
  • MVVM-MVP for WPF

ToI:

  • Generics
  • SOLID
  • Refactoring
  • Unit testing
  • Design Patterns

Experience:

  • 4 years DOTNET (ASPNet, Winforms)
  • 2 years LAMP + ASP
  • 1 year Java
  • 3 years Scripting

Nov
30
comment Get height of entire document with JavaScript
When working with iframes and jquery, because of this method of calculation, the iframe's document height will allways be at least the height of the iframe itselft. This is important to note when you want to reduce the iframe's height to match the content. You first have to reset the height of the iframe.
Nov
13
comment How to add second data source to xslt / dataview in SharePoint?
oh man, you don't know the time I spent last week trying to do something like that... I feel so stupid now ...
Nov
6
answered How can I force re-authentification on asp net mvc with Integrated auth
Nov
6
comment How can I force re-authentification on asp net mvc with Integrated auth
nop, Integrated Authentication = Windows Authentication
Nov
6
asked How can I force re-authentification on asp net mvc with Integrated auth
Nov
2
comment Need some help sorting out a major abstract pattern headache within my DAL
nice! but aren't you tired of reading/writing ".Instance" all the time? ;P
Nov
2
comment Ignoring accents in SQL Server using LINQ to SQL
Thanks, I was just to apply regex replace. That would have been terrible!
Nov
2
comment Need some help sorting out a major abstract pattern headache within my DAL
Your class will be able to see this methods, but you could chose to expose them or not, see my comment on the question.
Nov
2
comment Need some help sorting out a major abstract pattern headache within my DAL
I think it's better to separate the "special" methods, not the common ones (those should be less), and don't expose them as one property, but re-implement the methods (delegate to composite), this will allow you to have a cleaner API
Nov
2
answered Need some help sorting out a major abstract pattern headache within my DAL
Oct
30
comment Analyzing code structure using CodeDom??
as noted by @chyne, mono.cecil looks promising. If you open a project on codeplex or something, let me know :)
Oct
30
comment Binding to a RoutedUICommand that’s not in the codebehind.
Beautifull. I was banging my head on this one... learning wpf+mvvm is not as straight forward as I would wish. RoutedUICommands where too complex for what I intended and I knew that there should be a simpler way. @Kent, Thanks for your examples and blog.
Oct
29
comment Printing ServerReport without Preview
The report is rendered on the server, but displayed and printed on the client. This approach is used to mantain an modify reports appart of the application, or for consume reports from many clients without duplicate the reports on each one. Server reports also benefit from scheduled notifications, data caching, and other good things of the report server engine on sqlserver.
Oct
26
answered Simple HelloWorld build script
Oct
6
comment How to Change the productname of clickonce deployment after first install?
This IS the answer: As i suspected, was another thing in the wich was keeping the app to update correctly. Someone modified the unc share to the updates for the new users but not for the old ones.
Oct
6
comment Advice with Dynamic Forms in ASP.NET MVC
thanks, even without documentation the code is very straight forward and it did help me to sove a related issue. +1
Oct
5
comment How to Change the productname of clickonce deployment after first install?
Thanks for your answer. Unfortunately I'm trying on a pilot user's machine, under they session. I'm going to revisit (again) all the steps, maybe I missed some place that needs to be modified.
Oct
5
asked How to Change the productname of clickonce deployment after first install?
Sep
15
awarded  Yearling
Aug
20
comment A few RDLC and ReportViewer questions
Try to post one question per question. With a descriptive title. Read the FAQ.
Aug
14
revised What can cause garbage on prints with reportserver?
typo
Aug
10
revised What can cause garbage on prints with reportserver?
fixed grammar
Aug
7
asked What can cause garbage on prints with reportserver?
Aug
4
comment How to unit test a WCF Client built with WCF Rest Starter Kit
I don't know why I didn't thought to look in the source of the kit. obvious!! >_< ...
Jul
29
comment How to migrate/convert from SVN to Mercurial (hg) on windows
Selecting the answer for this question was difficult. evilbloodydemon was right when he commented in his answer to edit the config to enable the convert extension, but this answer is more clear and precise
Jul
7
accepted Class library with service references
Jul
7
revised Class library with service references
including the option for static url reference
Jul
7
comment Class library with service references
yes, the constructor of the proxy has that references, it's only the URL. Unless you provide static URL. if you do that, you don't need config file anyway.
Jul
7
revised Class library with service references
added 32 characters in body
Jul
7
comment Class library with service references
Because bloparod does not want to use the config, it's exposing the service to COM. It needs to modify the proxy's dependency on the config.
Jul
7
answered Class library with service references
Jul
3
comment How to take a screenshot and send by email programaticly on dotnet
while this is not the cleaner code, you pointed me to the right track here. That article was not very helpfull by itself, but thanks to it, I found this other article in mskb is.gd/1myNS explaining how to take the saved screenshot and add it as attachment.
Jul
3
revised How to take a screenshot and send by email programaticly on dotnet
small grammatical errors.
Jul
3
asked How to take a screenshot and send by email programaticly on dotnet