I had recently worked on a SAN failure that resulted in a perfect storm of bad backups, broken offsite replication and disabled notifications. The data was sent off to professionals to recover the data. What was returned to me was VHD files from each of the LUNs this SAN had. This SAN had about 20 …
Author: Jeremy
Using Chrome on CRM 2011 Rollup 12 will repeatedly show login prompt
While testing out CRM 2011 Rollup 12, I noticed that I could not get it to log me in for Chrome. After checking my security log and resetting Chrome back to defaults, it still didn’t shed any light onto why this was happening. After much searching, I happen to find the article explaining this. http://support.microsoft.com/kb/2709891/en-us?sd=rss&spid=15707 …
Adding search to Dynamics CRM Customer Portal
So I needed to add a search box to a Microsoft Dynamics CRM Customer Portal. So into Visual Web Developer 2010 Express I went. I opened the Customer Portal project and then expanded Pages and eService in the tree. Opening up ViewCases.aspx I located the following
1 |
<asp:GridView |
I added this before that:
1 2 |
<asp:Label ID="Label2" Font-Bold="true" runat="server"> Search: </asp:Label> <asp:TextBox ID="CaseSearch" AutoPostBack="true" runat="server"></asp:TextBox> |
I then …