ASPHostCentral.com SharePoint 2013 Hosting BLOG

All about Sharepoint 2013 Hosting articles

SharePoint Server 2010 Hosting :: How To Configure Exchange 2010 to route mail to SharePoint

clock November 2, 2011 20:39 by author Administrator

We will now look at the setup required on our Exchange server to complete the task; this is the same in Exchange 2007 and Exchange 2010.

The first step is to create a new send connector so in Exchange Management Console navigate to Organization Configuration|Hub Transport and click the send connectors tab. In the actions pane on the right click “New send connector”


Enter a descriptive name and select internal from the dropdown list then click next on the next screen you will have to enter the FQDN’s of your SharePoint server.


Click next; on the next screen enter the IP address of your SharePoint server and make sure that Route mail through the following smart host radio button is selected.


Click next; the next page asks about your authentication settings leave this at the default “None” selection.


Click next; At Twynham we have all the Exchange roles on one Exchange box so the next screen asks for the address of the hub transport server which should be picked up automatically during the setup of the send connector but you can add one manually


Click next and then new and finish your send connector for SharePoint is now setup and we can continue to the next step.

Currently rated 2.9 by 105 people

  • Currently 2.857142/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


SharePoint Server 2010 Hosting :: How To Configure Exchange 2010 to route mail to SharePoint

clock November 2, 2011 20:39 by author Administrator

We will now look at the setup required on our Exchange server to complete the task; this is the same in Exchange 2007 and Exchange 2010.

The first step is to create a new send connector so in Exchange Management Console navigate to Organization Configuration|Hub Transport and click the send connectors tab. In the actions pane on the right click “New send connector”


Enter a descriptive name and select internal from the dropdown list then click next on the next screen you will have to enter the FQDN’s of your SharePoint server.


Click next; on the next screen enter the IP address of your SharePoint server and make sure that Route mail through the following smart host radio button is selected.


Click next; the next page asks about your authentication settings leave this at the default “None” selection.


Click next; At Twynham we have all the Exchange roles on one Exchange box so the next screen asks for the address of the hub transport server which should be picked up automatically during the setup of the send connector but you can add one manually


Click next and then new and finish your send connector for SharePoint is now setup and we can continue to the next step.

Currently rated 2.2 by 173 people

  • Currently 2.242773/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


SharePoint 2010 Hosting :: Steps-by-Steps to Setup Mail Enabled Document Libraries in SharePoint 2010

clock November 1, 2011 17:02 by author Administrator

We are working on a continuing SharePoint 2010 support project for a group of school one of the features they require is the ability for students to be able to have a drop box to submit their work to teachers, this is a perfect example of the use of mail enabled document libraries in SharePoint so I thought while I am writing this up I may as well share how to setup this function. This post will be divided into five parts:-

1)      Configuring SMTP on the SharePoint Servers
2)      Configuring Exchange 2010 to route mail to SharePoint
3)      Configuring Active Directory
4)      Configuring SharePoint 2010 Central Admin
5)      Document Library Configuration

Configuring the SMTP service on SharePoint 2010

The first step we need to do in the setup is to add and configure the SMTP service on one of our SharePoint web front end servers. I will be setting this up on a farm configuration with 2 web front end servers and 1 application server.

The SMTP service is vital for mail flowing into SharePoint so your first port of call is to log onto your chosen SharePoint server and open server manager and navigate to features here we can add the SMTP service



As you can see from the illustration below after the service is installed the server MAY require a restart in my case this was not needed but it may be needed on your server so please be aware that you may have to have some down time in your setup so plan accordingly.




As you can see from the illustration above the setup of the service is now complete and no restart was required. The next step is to configure the service through IIS manager on the server, for this you will need to use IIS manager 6 here at Twynham we install this role during the setup of our servers but you may not, if not installed open Server manager|Roles|Add Roles|IIS 6 Management Compatibility through this interface which you can see below we can manage SMTP



Right click on SMTP Virtual Server and choose properties once open click on the access tab and then click the Authentication button “Anonymous Access” should be ticked.



Next step click OK and then click the Connection button and ensure that “All except the list below” radio button is selected and click ok



The final button to click is the relay button and make sure that “Only the list below” radio button is selected and also make sure that you see a tick in “Allow all computers which successfully authenticate to relay regardless of the list above”



You can also fine tune the permissible message size by going into the messages tab this could be crucial for students sending in attachments via email so please make sure this is set to a reasonable limit.



You will find that all the settings are pre-set out of the box the only setting that you will really need to check is the Start-up type on the SMTP service by default this is set to manual so obviously change this to automatic



"A quick Note from the field is that I have found that if you restart your exchange server you will need to restart the SMTP service on your SharePoint servers, we route our internal mail from an ISA server to Exchange 2010 and this needs to be done after each restart of the Exchange box.”

           

Currently rated 3.0 by 64 people

  • Currently 3.015625/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


SharePoint 2010 Hosting :: How to Set Limit for SharePoint 2010 Using Quota Template

clock November 1, 2011 15:41 by author darwin

In this article I am showing you how to set limit for SharePoint 2010 site collection using Quota Template. Here I am using Power Shell to define Quota Template.

A quota Templates defines the storage limit for the maximum amount of data that can be stored in a site collection.

When the site collection reaches the Quota template defined by Administrato, it triggers an e-mail alert to the site collection administrator. Quotas can be saved as quota templates so that we can apply them to any site collection in a SharePoint farm.

Create Quota Template

1. On the Start menu, click All Programs.

2. Click Microsoft SharePoint 2010 Products.

3. Click SharePoint 2010 Management Shell.

4. At the Windows Power Shell command prompt type the following command:



5. You will get a Power shell command prompt like below



The Syntax to create Quota Template is as shown

$Customquota = New-Object Microsoft.SharePoint.Administration.SPQuotaTemplate
$Customquota.Name = "ProjectQuota"
$Customquota.StorageMaximumLevel = 1048576
$Customquota.StorageWarningLevel = 524288
$Service = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$Service.QuotaTemplates.Add($Customquota)
$Service.Update()

- Name - You have to give the Quota Template name as string value.

- StorageMaximumLevel –Is the maximum size for your site collection(In Bytes).

- StorageWarningLevel-Will give email message if the Quota template reaches the value specified in this column(In Bytes)

Please find the command in action



To change the quota template for a site collection by using Windows Power Shell.

The Syntax Change the Quota Template for a site collection.

Set-SPSite -Identity "Site URL" -QuotaTemplate "Template Name"

- Site URL- is the URL of the site collection whose quota template you want to change.

- Template Name -is the name or GUID of the replacement template. 

Currently rated 2.9 by 32 people

  • Currently 2.90625/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


SharePoint 2010 Hosting :: Working with Sharepoint Document Management

clock October 20, 2011 17:05 by author Administrator

Sharepoint Document Management is among the most well-respected and reputed of all document management systems. The proper and organized management of documents is essential to the success of any business. Sharepoint is one of the better systems designed to help companies expertly manage their documents.

Sharepoint gives organizations the tools to handle day-to-day operations with programs that they are already familiar with, for instance, Microsoft Office applications such as Word and Outlook. Sharepoint also supports every stage of the document life cycle.

ASPHostCentral.com, as one of the SharePoint 2010 Hosting Providers, proudly confirms that we do support both SharePoint Foundation 2010 and SharePoint 2010 Server Hosting.



During the document management planning process, companies tend to follow certain steps. They often times first determine document management roles. This will generally involve determining who in the organization will be involved in the document management process and in what role. Sharepoint can help individuals identify who these employees will be. This can be especially helpful for companies or executives who don’t have much experience in this regard.

Next, it will be necessary for organizations to figure out what documents will be needed. These will include forms used daily and those that will only be used sparingly. Again, companies will find that Sharepoint will walk them through this process.

The proper organization of documents is important to every company. When it is done correctly and in a way that is intuitive to those who will be using the documents, life becomes much easier for everyone involved. Using Sharepoint, companies will find that they are able to organize documents in a variety of ways including document libraries and records repositories, amongst others.

In addition to the aforementioned, companies will also find that they are able to organize documents based on content type (policies, metadata, workflow processes, etc.). This helps create much needed consistency when it comes to the management of a company’s documents, which is extremely important. Having a document management system in place which that makes accessing and working with documents easy, will help companies save both time and money. Workflow planning, content control and the development of information management policies are also made possible using Sharepoint.

Overall, Sharepoint is a very good document management system. The proper management of documents is crucial to the smooth running of an office or organization. Document sharing, collaborative authoring, archiving and keeping confidential documents protected are just a few of the document management capabilities Sharepoint offers users. Companies in need of a quality system to manage their documents should consider it. It will require that a company own certain hardware and software programs, which is something that will need to be taken into consideration before a company opts to use it as their document management system

Currently rated 2.0 by 3 people

  • Currently 2/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


Sharepoint 2010 Hosting :: How to program Managed Metadata columns in Sharepoint 2010?

clock March 20, 2011 17:41 by author Administrator

You can provision managed metadata column into the content type.

You need to add the “Metadata” column into the site columns and content type using element xml file, and also need to connect the field to metadata column in the feature activation.

Here is the solution:

1.    You need to add a new field element of the type “TaxonomyFieldType”. 

<xml version="1.0" encoding="utf-8" ?>
<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
 <Field ID="{46138ADB-1778-4E05-8371-114006F725A0}"
    Type="TaxonomyFieldType"
    DisplayName="Locations"
    ShowField="Term1033"
    Required="TRUE"
    EnforceUniqueValues="FALSE"
    Group="_Custom"
    StaticName="Locations"
    Name="Locations"
     />
</Elements>

2.    Add this filed to the content type, just need to add a new “FieldRef”

<FieldRef ID="{46138ADB-1778-4E05-8371-114006F725A0}" Name="Locations"/>

3.    Now we have to connect this field to managed metadata service(MMS).

For this we need to create an event receiver for the feature. Right click on the feature  and select “Add event receiver”.
Uncomment the “feature activate” code and replace it with the following code.  

public override void FeatureActivated(SPFeatureReceiverProperties properties)
 {    
              SPSite site = properties.Feature.Parent as SPSite;    
             Guid fieldId = new Guid(“{46138ADB-1778-4E05-8371-114006F725A0}"   
             if (site.RootWeb.Fields.Contains(fieldId))
             {
                       TaxonomySession session = new TaxonomySession(site);        
                       if (session.TermStores.Count != 0)
                       {            
                            var termStore = session.TermStores["Managed Metadata Service"];            
                            var group = termStore.Groups.GetByName("Locations Group");            
                            var termSet = group.TermSets["Towns"];                    
                           TaxonomyField field = site.RootWeb.Fields[fieldId] as TaxonomyField;           
                           field.SspId = termSet.TermStore.Id;            
                           field.TermSetId = termSet.Id;            
                           field.TargetTemplate = string.Empty;            
                           field.AnchorId = Guid.Empty;            
                           field.Update();        
                      }   
                }
} 

This method will check if the field has been deployed. We used Guid to retrieve the filed as defined in the XML.  Your term store group definition should look like this.                              

If it is different then you need to change the “group name” and “term set” name in the feature activation according to your MMS environment.

Now you deploy your content type and can test it by creating a new list from that content type.

The result with the metadata column is shown in the below picture.

  

Currently rated 1.6 by 69 people

  • Currently 1.550725/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


MOSS 2007 Hosting :: How to apply a Theme to all sub sites in SharePoint 2007

clock September 5, 2010 17:05 by author Administrator
Apply a Theme to all sub sites:(works for MOSS 2007 only, not WSS 3.0)
  1. Change the top site to the theme of your choice using the normal method in Site Actions > Site Settings > Site Theme.
  2. Navigate to the top site to see the newly applied theme.
  3. View the HTML source of the SharePoint page using the theme you want.
  4. Look for a link tag containing the .css file for the applied theme.  It will look something like this:
    <link rel="stylesheet" type="text/css" id="onetidThemeCSS" href="/apps/afe/_themes/Belltown/Bell1011-65001.css?rev=12%2E0%2E0%2E4518"/>
  5. Copy the href value to your clipboard or to a text file if you like.  It should look something like:
    /apps/afe/_themes/Belltown/Bell1011-65001.css
  6. On your top level site, go to the Site Actions > Site Settings > Master Page screen.
  7. Scroll to the bottom where the Alternate CSS URL section is.  Select the "Specify a CSS file..." option.
  8. Paste the path copied from the href above into the text box.
  9. Check the Reset all sub-sites to inherit this alternate CSS URL option.
  10. Click OK.
  11. Navigate to your sub-sites and verify the theme has been applied.
 

Currently rated 1.5 by 2 people

  • Currently 1.5/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


Sharepoint Hosting :: Creating the Design in Sharepoint

clock June 14, 2010 14:55 by author Administrator
Master Page

A crowd favorite, master pages have emerged as the new "it" thing in SharePoint design.  Master pages are a feature of ASP.NET 2.0 and allow you to store common page elements, such as a header, content container, and footer, in a single file.  This file is then applied to every content page in your site creating a unified and branded look across the entire site. 

The benefits to master pages:

-
If your design really deviates from the standard SharePoint look and feel, master pages are for you.  They allow for the most finite control over your page design
- Multiple master pages can be created for various site needs, such as home splash screens, sub page designs, regional or divisional designs, etc
- You can assign a master page to an entire site, or to a single page, and several options in between.  You have excellent control of where the master page is applied within your site

The potential issues that you need to know about:

-
Your custom master page will not reach past your standard web pages and affect the application screens (these are the administrative screens peppered throughout the site; you can pick them out by looking at the URL, they always include "_layouts" in the address). For some sites, especially external facing brochureware sites, this isn't a big deal.  For others, especially internal sites and Intranets, this can present an issue
- Creating and editing master pages does require a certain web skill set. You need to know HTML, CSS and be comfortable with ASP.NET and understand what a content placeholder is and how to use them
- CSS only based master page designs are a challenge to create! Short of pitching everything provided to you by the application, you will have tables in your design no matter what, and working around those tables and needs for SharePoint will cause you CSS headaches

How to create a master page

A great way to create master pages is to use SharePoint Designer.  Yes you can use other tools, but SharePoint Designer helps create that bridge between you and your SharePoint site and just makes working with the site a heck of a lot easier. Through either SharePoint Designer or the SharePoint site interface you can add and manage master pages in the Master Page Gallery and apply master pages to your site and site pages.  To create the file in SharePoint Designer you just do a File / New / SharePoint Content / Master Page.  If you don't use SharePoint Designer, you can use the web interface to upload a master page to the Master Page Gallery much like you would upload a document to a SharePoint document library

When you first deploy your base master page, it can be rather alarming since there is no design or layout!  That is ok, this is a great way to start your design.  Add in your design code to the top of the file, and then locate the content placeholders you need in your design.  Move the content placeholder code to the appropriate place in your design code, then hide all of the ones you did not use at the bottom of the file where indicated. It is a puzzle approach and you essentially fit together your code and the SharePoint content placeholders to create your custom master page

Another approach is to start off with a master page that SharePoint provides (for WSS sites it is only default.master, publishing sites include several other master pages) and then modify the code from there. We personally don't like this approach because we think it takes more time to create custom master pages this way, and it limits your creativity. When you look at an existing design and try to morph it into your own, you may very well end up with a site design that looks similar to the original

Using the master page you created

Once the master page has been created, you can do several things with it. Using SharePoint Designer you can set the master page to be used for the site, or you can attach it to a single page. If you have a MOSS site, you can also use the site settings to specify the master page to be used for the site. Make sure you publish your MOSS master page before you use it for testing or production


Themes

Themes are very useful and provide a more lightweight way to brand your SharePoint site. A theme can change the existing colors and images of a site, but not the layout of the elements in the site design.  A theme does not include any HTML or ASP.NET code, it is only a collection of image files and CSS files. The theme is applied on top of the site, replacing images and CSS styles in the site, essentially re-skinning the site. Themes can be used alone, or in conjunction with a custom master page

The benefits to themes

-
Often a theme can handle your design changes for SharePoint. The web page layout for SharePoint uses the standard formula of header, main navigation across the top and a left navigation area. If your design includes the same layout, you may be able to create your design only with a theme
- Themes can be used to alter a design to create different variations of a design for departments, divisions or regional sub sites
- Themes affect all aspects of a site, including the application screens

The potential issues that you need to know about

-
When you apply a theme to a site, any child sites will not inherit the theme application. You have to individually apply the theme to the child sites. This is an out-of-the-box limitation, and like most SharePoint issues, can be worked around programmatically. If this will create an issue, check out some of the solutions available for forcing theme application via Features and other means
- When you make a change to a theme, you have to reapply the theme to the site to see the change
- When working with a theme, you can only utilize existing CSS styles used in the master page (be it your own or the default SharePoint ones). If there are elements on the page that need to be moved, you will have to use positioning in the CSS styles to shift their layout. You can't add CSS IDs or class names, so you are limited to what you can do with what is given to you in the master page code.

How to create a theme

Themes are applied to a site in the Site Settings. When a Theme is applied, a copy of the theme is created in the content database and it pops up in SharePoint Designer. This makes for a great way to develop a Theme. When you make a change to any of the files in SharePoint Designer, it will automatically appear in the site. Because of this, SharePoint Designer is a great platform for custom theme development, but we don't suggest leaving these changes in the content database post development.  When another theme is applied to the site, the previous theme is wiped out (including your changes) and the new theme is put in its place

So you can create a custom theme in one of two ways. First, just strike out on your own.  You can apply a theme to a site, then open up the CSS file in SharePoint Designer and delete out all of the contents and start writing your own style overrides for the site. Add images in the same way.  Or, you can pick a theme that looks similar to your design (if one exists) then make modifications to that theme in SharePoint Designer until the theme looks like your design

Don't forget about the power of CSS. There isn't necessarily a one to one relationship with elements on the page. If there is a CSS class or ID attached to a page element, you can dictate many things about that element just using CSS, such as display, placement and look. Through CSS, you can actually create a lot of modifications to the page

Using the theme you created

After you are done tweaking your theme, you can create a more permanent version that lives on the web server and is available to all sites. How to create a theme is very well documented. On the web server in the 12 directory, you create a copy of an existing theme, modify the INF file, theme directory name, and the SPTHEMES.XML file.  Then you can strip out the theme contents, and insert in the CSS and images you created in SharePoint Designer. Recycle the application pool for the SharePoint site or reset IIS, and your custom theme is now available for use


CSS

Really no matter how you brand your SharePoint site, you will be dealing with CSS. In addition to master pages and themes, you can choose to only do CSS and not use master pages or themes as a vehicle for implementation. You can just make CSS changes and tell the SharePoint site to reference the new CSS file

The benefit to CSS only solutions

-
The CSS file does not have to live on the SharePoint web server. You can point the CSS reference to anywhere else on the web. This is ideal if you don't have access to your web server

The potential issue that you need to know about

-
WSS only sites don't have a site setting to specify an alternative CSS file. You will have to change something else in the site in order to pull in the CSS file.  You can modify default.master, or a specific content page like default.aspx, or include it at the page level in a Content Editor Web Part. A more elegant way to handle this issue is to use a theme. If you don't have access to the web server, you can assign a theme to your WSS site, empty out the contents of the theme in SharePoint Designer, then point to or include your custom CSS.  Just be sure to keep a back up copy

How to use your custom CSS

MOSS has a nice feature that allows you to specify an alternative CSS file in the Site Settings. If you have multiple files you want to include, just specify one file in the site settings, then use the import declaration in the CSS file to include additional CSS files.  If you have a WSS only site, see the bullet point above for options

What about editing CORE.CSS?

Yes, ok you can do this, but we really don't recommend it.  Here is why:

- You aren't supposed to edit the default SharePoint files - basic rule of thumb and changes can throw you into an "unsupported state".  If you choose to do this anyways, create a back up of Core.css before you make any changes so at anytime you can overwrite your modified file and put yourself back into a supported state
- Core.css is HUGE. 15,000 lines of code kind of huge. We say don't edit this file because dealing with that large of a file is difficult and you will quickly get bogged down trying to keep up with your changes
- Core.css isn't the only CSS file that SharePoint uses. In all, there are 26 CSS files in SharePoint (depending on your installation). So really you aren't looking at making edits to only one CSS file, you will probably get into making tweaks for 1-5 files out of that 26. It really comes down to management of your changes and knowing what was modified where.  Make it easy and just create a separate style sheet.




Be the first to rate this post

  • Currently 0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


Sharepoint (WSS) Hosting :: The Advantages of using Windows Sharepoint Services (WSS)

clock June 2, 2010 22:29 by author Administrator
The following describes few advantages of using Windows Sharepoint. ASPHostCentral.com, as a leading Windows Sharepoint and MOSS 2007 hosting provider, proudly presents this article to anyone and we believe it may benefit ASP.NET and Sharepoint community or anyone who are using Sharepoint/MOSS.

1 – Discovered the solutions straight to your business requirements
Small, medium or even world class organizations seeking a more customized deployment can get started quickly with application templates for addressing specific business processes or sets of tasks.

2 – Business security made easy to users
Windows SharePoint able to increase the security of information resources, while decreasing cost and complexity associated with site provisioning, site management, and support.

3 – Take file sharing to new level storage capabilities for all level of users in a company
Enable workspaces with document storage and retrieval features, including check-in/check-out functionality, version history, custom metadata, and customizable views.

4 – Improve team productivity – the main company priority
Connect people with the information and resources they need. Users can create team workspaces, coordinate calendars, organize documents, and receive important notifications and updates through communication.

5 – Feeling slow loading time with SharePoint interface? Not at all with SharePoint 3.0!
The intelligence of Windows SharePoint improvements in Windows SharePoint Services 3.0 includes enhanced views and menus that simplify navigation within and among SharePoint sites. Integration with familiar productivity tools, including programs in the Microsoft Office system

6 – Now you can manage your documents easier than you thought
Users have the ability to view revisions to documents and restore to previous versions, and the control to set document- and item-level security.

7 – many more


Where do you go for Sharepoint (WSS) Hosting?

What we think makes ASPHostCentral.com so compelling is how deeply integrated all the pieces are. We integrate and centralize everything--from the systems to the control panel software to the process of buying a domain name. For us, that means we can innovate literally everywhere. We've put the guys who develop the software and the administrators who watch over the server right next to the 24-hour Fanatical Support team, so we all learn from each other:

- 24/7-based Support - We never fall asleep and we run a service that is operating 24/7 a year. Even everyone is on holiday during Easter or Christmas/New Year, we are always behind our desk serving our customers
- Excellent Uptime Rate - Our key strength in delivering the service to you is to maintain our server uptime rate. We never ever happy to see your site goes down and we truly understand that it will hurt your online business. If your service is down, it will certainly become our pain and we will certainly look for the right pill to kill the pain ASAP
- High Performance and Reliable Server - We never ever overload our server with tons of clients. We always load balance our server to make sure we can deliver an excellent service, coupling with the high performance and reliable server
- Experts in Sharepoint Hosting - Given the scale of our environment, we have recruited and developed some of the best talent in the hosting technology that you are using. Our team is strong because of the experience and talents of the individuals who make up ASPHostCentral
- Daily Backup Service - We realize that your website is very important to your business and hence, we never ever forget to create a daily backup. Your database and website are backup every night into a permanent remote tape drive to ensure that they are always safe and secure. The backup is always ready and available anytime you need it
- Easy Site Administration - With our powerful control panel, you can always administer most of your site features easily without even needing to contact for our Support Team. Additionally, you can also install
more than 100 FREE applications
directly via our Control Panel in 1 minute!

Happy hosting!
 

Currently rated 1.4 by 19 people

  • Currently 1.421052/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


SharePoint Hosting :: Windows SharePoint Services (version 3) on the Mac

clock April 30, 2010 17:20 by author Richard

This topic explains the article about SharePoint 3. In case, you are looking for SharePoint 3, you can always consider ASPHostCentral and you can start from our lowest Standard Plan @4.99/month to host your SharePoint site.

What’s New?
There are a lot of new features in Windows SharePoint Services v3. The first thing that most Mac users will notice is an updated user interface that renders much better on the Mac in both Firefox and Safari. The new templates render well and you'll notice better performance when you are customizing your sites and pages from the Mac.

Windows SharePoint Services v3 ships with 6 standard site templates. These templates include some of the site types your familiar with from v2, plus a could of new ones:

- Document Workspace
- Team Site
- Blog
- Wiki
- Meeting Workspace
- Blank Site

The two most commonly used templates are probably the Document Workspace and the Team Site.

A Document Workspace essentially acts as a very smart folder, which supports collaboration on one or more shared documents and supporting files. The Document Library folder supports check in/checkout and versioning and the site features a Task list and a Links list that a group can use to track assignments and progress on the document.

A Team Site is very similar to a Document Workspace, but the scope is usually wider, serving the needs of a larger group of individuals. Team Sites feature a Document Library, an Announcements List, a Calendar, Contacts and a Quick Links list by default.

The Blog site is a new feature in Windows SharePoint Services v3. A blog is simply a list of stories posted with the latest item at the top of the list. This makes it easer for readers to scan a list they've seen for the latest news from the blog. The Blog site in SharePoint v3 also features an RSS feed and the ability for others to comment on blog posts. This ability to comment on posted items allows for the exchange of ideas between the author of the blog and the readers and even between the readers themselves.

Another new site template in SharePoint v3 is the Wiki site. A wiki is a site that allows any authorized user to edit a page quickly and easily. One of the features of the wiki that make it a powerful tool for collaboration is the ability to instantly create a new page based on a term in the current page. Adding double brackets around a word in a paragraph creates a hotlink to a new page in the wiki. Wikis work well as sites where group knowledge is stored and retrieved. For example, you can use a wiki to store information about configuring machines on the network. As the information around that topic changes, admins and users can update the data on the pages of the wiki so that the information is always up-to-date. Wikis can also be used for brainstorming, research, and for planning. Individuals and groups can use a wiki to store meeting notes and other textual information that needs to be updated on a regular basis. SharePoint v3 wiki pages work well on both the PC and the Mac, but only the PC version running in Internet Explorer features a WYSIWYG editor. Users writing to a SharePoint wiki on the Mac will need to use simple HTML markup for formatting and linking.

A Meeting Workspace is a site used to track meeting notes and schedules. At launch SharePoint v3 is scheduled to provide 5 different workspace types.

Finally, the Blank Space is just that, it's blank. This means that you can start a site with just the content you want.

New Content
The version 3 SharePoint sites features an updated Create Page where you can add many of the features I've mentioned already to an existing site. This means you can add additional Document Libraries, Wiki pages, tracking calendars, and even sub-sites to an existing SharePoint site.

The content page types that can be added to a SharePoint v3 site are broken into 5 categories; Libraries, Communications, Tracking, Customer Lists, and Web Pages.

Library types include the Document Library, the Form Library, the Wiki Page Library and the Picture Library. The only library type that might prove difficult for Mac users to use is the Form Library. Form Libraries depend on features found in Microsoft InfoPath, which isn't available on the Mac. The other library types should work fine, except in cases where functionality is dependent on an ActiveX control, for example, when you want to export a list to a spreadsheet.

Communications page types include Announcements, Contacts, and Discussion Boards. Of these, the Discussion Boards feature is interesting in that the boards created in SharePoint v3 have the look and feel of modern web discussion boards and the interface is easy to use from the Mac.

The Tracking page types include Links, Calendars, Tasks, Issue Tracking and Survey pages. One of the most exciting new features of SharePoint version 3 is the Project Tasks tracking page type. This new page type provides a Gantt Chart view that allows you to instantly see the status of items in a project list. This is a great feature for users managing small projects and it works well on the Mac

A Typical Workflow
The workflow is very similar in SharePoint v3, but the user interface is different so it's probably worth walking through a typical document sharing workflow from the Mac. The document workflow for SharePoint v3 is fairly straightforward and consists of the following steps. In our example, we'll add a new Microsoft Word file to a document library from the Mac.

1. Create your new document in Microsoft Word 2004 for Mac and save it somewhere on your local machine.

2. In your SharePoint v3 document library, click upload and use the Upload Document page to add the file you created in Word to the SharePoint document library.

3. The document is now available in the SharePoint document library.

To modify this file, a Mac user should follow these steps to ensure that the file is locked while they work on it and is then updated properly on the SharePoint site.

1. Check out the file by mousing over the file name in SharePoint and click Check Out in the dropdown menu.

2. Click on the file name to download the file to the Mac.

3. Work on the file in Word and save your work.

4. Click Upload in the SharePoint document library to open the Upload Document page.

5. Use the browse button to add the document to the Name text box and make sure that the Add as a new version to exiting files checkbox is checked.

6. Click OK.

Top Reasons to trust your SharePoint 3 website to ASPHostCentral.com

What we think makes ASPHostCentral.com so compelling is how deeply integrated all the pieces are. We integrate and centralize everything--from the systems to the control panel software to the process of buying a domain name. For us, that means we can innovate literally everywhere. We've put the guys who develop the software and the admins who watch over the server right next to the 24-hour Fanatical Support team, so we all learn from each other:

- 24/7-based Support - We never fall asleep and we run a service that is operating 24/7 a year. Even everyone is on holiday during Easter or Christmas/New Year, we are always behind our desk serving our customers
- Excellent Uptime Rate - Our key strength in delivering the service to you is to maintain our server uptime rate. We never ever happy to see your site goes down and we truly understand that it will hurt your onlines business. If your service is down, it will certainly become our pain and we will certainly look for the right pill to kill the pain ASAP
- High Performance and Reliable Server - We never ever overload our server with tons of clients. We always load balance our server to make sure we can deliver an excellent service, coupling with the high performance and reliable server
- Experts in SharePoint 3 Hosting - Given the scale of our environment, we have recruited and developed some of the best talent in the hosting technology that you are using. Our team is strong because of the experience and talents of the individuals who make up ASPHostCentral
- Daily Backup Service - We realise that your website is very important to your business and hence, we never ever forget to create a daily backup. Your database and website are backup every night into a permanent remote tape drive to ensure that they are always safe and secure. The backup is always ready and available anytime you need it
- Easy Site Administration - With our powerful control panel, you can always administer most of your site features easily without even needing to contact for our Support Team. Additionally, you can also install more than 100 FREE applications directly via our Control Panel in 1 minute!

Happy hosting!

Currently rated 2.0 by 25 people

  • Currently 1.96/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5


Sharepoint 2013 Hosting

ASPHostCentral is a premier web hosting company where you will find low cost and reliable web hosting. We have supported the latest ASP.NET 4.5 hosting and ASP.NET MVC 4 hosting. We have supported the latest SQL Server 2012 Hosting and Windows Server 2012 Hosting too!



Calendar

<<  April 2024  >>
MoTuWeThFrSaSu
25262728293031
1234567
891011121314
15161718192021
22232425262728
293012345

View posts in large calendar

Sign in