Note to self - HP Online diagnostic tools
Jan 11, 2008
I always forget this link and it takes so much time to find it again and again!
I always forget this link and it takes so much time to find it again and again!
Users can install Microsoft Office solutions by opening the deployment manifest from the Web. However, a secured installation of Internet Information Services (IIS) will block the .vsto file name extension. The MIME type must be defined in IIS before you deploy Office solutions by using IIS.
http://msdn2.microsoft.com/en-us/library/bb608629(VS.90).aspx
In place of writing something like:
protected string GetUrl(Information info)
{
if (info is News)
return ResolveUrl(string.Format("~/news.aspx/{0}", info.NormalizedTitle));
else if (info is Publication)
return ResolveUrl(string.Format("~/publications.aspx/{0}", info.NormalizedTitle));
else
return string.Empty;
}
This trick is coming from my friend Nix.
If you are developing a site containing Google Adsense you might know that clicking on your own ad is not allowed.