Monthly Archives: July 2010

Retire an user error message

  delete from sysdba.usersecfunctions where userid =’U6UJ9A00001M’ update sysdba.account set accountmanagerid =’ADMIN’ where accountmanagerid =’U6UJ9A00001M’ update sysdba.contact set accountmanagerid =’ADMIN’ where accountmanagerid =’U6UJ9A00001M’ update sysdba.opportunity set accountmanagerid =’ADMIN’ where accountmanagerid =’U6UJ9A00001M’ UPDATE sysdba.ACCOUNT SET SECCODEID =’ADMIN’ WHERE SECCODEID =’U6UJ9A00001M’ UPDATE … Continue reading

Posted in SalesLogix | Leave a comment

Why EntitySet not auto-generated by LINQ-to-SQL?

It turns out the the child table must have a primary key. If not set in database level, that can be set in the *dbml file. Multiple-field primary key works too.

Posted in ASP.NET | Tagged , | Leave a comment

Client-side validator not firing in FF, only in IE

Symptom: For a legacy web app converted from older version of ASP.NET, the client javascript form validation only fires in IE, not in FF. Fix: Change this line in web.config <xhtmlConformance mode=”Legacy”/> to: <xhtmlConformance mode=”Transitional”/>

Posted in ASP.NET | Leave a comment