I was looking for a way to accomplish the need of making it easier for users to access a SharePoint Document Library, with the plus side of being able to add this into a GPO and letting it be mapped across the domain. Of course you can add a network location to a SharePoint Document …
Month: November 2012
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 …