Make sure that the url to the stylesheet is absolute. It should be something like http://www.domain.com/stylesheet.css instead of /stylesheet.css.You could also place the css inline at the top of the page. Also, different clients could render fonts differently (outlook vs hotmail).
CRMBrad...
Something could be written to delete the leads programatticaly:
QueryExpression qe=new QueryExpression();
qe.EntityName=EntityName.account.ToString();
qe.ColumnSet=new AllColumns();
BusinessEntity [] entities=crmService.RetrieveMultiple(qe).BusinessEntities;
foreach(account a in entities) {...
If you are creating them programmatically you can set the value with: entityname.boolfield = new CrmBoolean(); entityname.boolfield.Value = true;
You can also customize the enity within CRMand set the attribute to a defualt value so it is always assigned
Brad
www.streamsol.com
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.