by Phil Adams
30. July 2009 11:19
You should use Setspn -A http\crm crm$. The machine account is the name of the machine plus a $-sign.
by Phil Adams
6. July 2009 13:50
Occasionally there is a need to get string representation of ASP.NET control in other words - render it into string instead of letting it be rendered on the page. The following method renders a control into its HTML string. Namespaces used:
using System.Text;
using System.IO;
using System.Web.UI;...
[More]