Search

You searched for the word(s): userid:860757

Matching Posts

  • Re: Validation controls load very slow (internet explorer)

    I do not have windows hosting available, but I have uploaded the code to my current hosting, so you can run it with visual studio. http://users.telenet.be/ruben.schollaert/asp/ It's a simple gridview with no real databound items. But it loads very slow in IE (fast in opera & firefox)
    Posted to Web Forms (Forum) by ruben0 on 4/1/2009
  • Validation controls load very slow (internet explorer)

    I have a gridview with 40usercontrols per row and 70rows, each user control has a textfield and a required field validator. When I load this in internet explorer it takes about 20seconds to load. In firefox and opera it takes only 2seconds. When I remove the required field validators it loads in 2 seconds for internet explorer as well. I tried disabling javascript, but that does not speed it up.. Anyone had something similar? Or any idea where to start?
    Posted to Web Forms (Forum) by ruben0 on 3/31/2009
  • Reflection (works when debugging, not when running)

    Ok, I've got some strange behaviour in .NET. I've got this code: 1 private InquiryDTO FillInquiryGeneric(InquiryDTO inquiry) 2 { 3 string prefix = ((inquiry is MonthInquiryDTO) ? "M" : ((inquiry is QuarterInquiryDTO) ? "Q" : "S" )); 4 inquiry = (InquiryDTO)FillInquiryValuesGeneric(inquiry, prefix); 5 if (inquiry.Period.students) 6 { 7 if (inquiry is MonthInquiryDTO) 8 ((MonthInquiryDTO)inquiry).InquiryStudent = (MonthInquiryStudentDTO)FillInquiryValuesGeneric
    Posted to C# (Forum) by ruben0 on 3/20/2009
  • Entity Framework - Detached objects

    First I was using a singleton class with only one instance of my entities (my context) but that means every user on the site uses that same instance, so I changed it to use a new instance per controller. I've got my "UserController" and "CompanyController" (both used to update or get users/companies) A User object has a link to Company. What I do in my usercontroller: 1 public void addUser(UserDTO userDTO) { 2 User user = User.CreateUser(0, .....) 3 user.Company = new CompanyController
    Posted to ASP.NET 3.5 Extensions Preview (Forum) by ruben0 on 3/19/2009
Page 1 of 1 (4 items)