As you can see I'm still working on sites, lists and views and I ran into another challenge. It started out very basic. I wanted to create a discussion forum list on a site. // Create new list listGuid = newWeb.Lists.Add("Forum", "ForumDescription", "Forum", "00BFEA71-6A49-43FA-B535-D15C05500108", 108, "", SPListTemplate.QuickLaunchOptions.Off); SPList forumList = newWeb.Lists[listGuid]; After succesfully creating the forum list I wanted to add a custom view to the list. That seemed to be easy enough as well. // Add an extra view to the list viewFields = new StringCollection(); viewFields.Add("LinkDiscussionTitle"); viewFields.Add("Author"); viewFields.Add("DiscussionLastUpdated"); newView = forumList.Views.Add("Portal View", viewFields, "", 100, true, false); newView.Update(); Unfortunately creating a view using the code above causes the link on the title takes yo...