SharePoint site pages and application pages

I study the difference between these concepts. I want to create a public site Sharepoint and one better than the other for this use, or is this too general a question?

+4
source share
3 answers

At the most general level; Application pages are stored in the web server file system (also known as "12 hive") and operate in a more privileged security context. You usually use them to create administrative interfaces.

Site pages (for example, default.aspx) are user-oriented and can be configured through the SharePoint designer.

+3
source

Site pages can contain one or more zones of web parts, each zone can contain one or more zones of web pages. Site pages can be customized. Site pages do not support code by file.

Application pages such as Create.aspx, Themeweb.aspx. Application Pages Cannot be configured Application pages support code by file.

+1
source

Site pages: - Site pages - this is a site or web area, the user can customize the site pages, site pages are stored in the content database,
You cannot have user code on the pages of a site. Site pages are pages without a title.

Application Page: -
Application pages are an area with a farm. The user cannot configure user settings. Application pages are stored in the WFE (web interface) in the _layouts folder. You can have your own code on application pages. Application pages are ghost pages.

0
source

Source: https://habr.com/ru/post/1303302/


All Articles