An application page is an ASP.NET Web page that is designed for use in a SharePoint Web site. Application pages are a specialized type of ASP.NET page. The primary difference between an application page and a standard ASP.NET page is that an application page contains content that is merged with a ...

learn more… | top users | synonyms

1
vote
1answer
18 views

Application Page VS Template Not Generating Designer Files

I've been banging my head on this one. I've never used the auto-generated designer files in Visual Studio before (it's the OCD...), but I'm trying to use them now and I don't know if this is a known ...
4
votes
1answer
85 views

How do create a page from pagelayout using code in sharepoint 2013

I was wondering, what APIs are available if I'm writing a farm-based sharepoint solution, for sharepoint 2013. Basically I read about this thing called Page Layouts, and they seem like page ...
2
votes
3answers
53 views

Custom Page in Sharepoint 2010

Sorry guys, I believe, I have framed my question in wrong way. Let me put that here now. I am supposed to implement the automation of listing of jobs on our intranet. We will have two types of jobs ...
0
votes
1answer
26 views

Automation with Sharepoint 2010

I have a scenario where I need to get the job listings from a feed(which will give me the list of jobs in XML file) and display it in a sharepoint page. I will have a the daily feeds coming in. Please ...
0
votes
1answer
34 views

Full-Trust Solutions on SharePoint Online Dedicated

I am trying deploy a solution to SharePoint Online (SPO), after looking at documentations about SPO, I found only Sandbox Solutions and Apps can be deployed to SPO, but my solution is a Farm Solution. ...
0
votes
1answer
19 views

storing persistant data at farm level for a timer job

Ive created a timer job and a application page so i can set some custom values that the timer job uses. Im currently storing the values in the farm.properties hastable so that the timer job can ...
0
votes
2answers
26 views

deploy application page to multiple folders

I have an app that applies to two different groups and each has a different database. Example: _Layouts/dept1/SomePage.aspx (uses dept1db) _Layouts/dept2/SomePage.aspx (uses dept2db) I would like ...
0
votes
1answer
25 views

SharePoint Application Page SQL Server Connection Fails With Error

I have developed an application page for SharePoint 2007 and it works fine. When I tried to connect to SQL Server 2005 database I am getting following error: Request for the permission of type ...
0
votes
2answers
48 views

SharePoint 2010 Cannot access Properties or Events of my Custom UserControl in my Application Page

I have created a UserControl (Farm) in my SharePoint Project using VS2012 (for SharePoint 2010). I want to embed/host this in an application page. I have added properties and events to the ...
0
votes
0answers
21 views

SharePoint PeopleEditor In Application Page Not Programatically Populating Users In Production Environment

I have a PeopleEditor control added to a custom application page. It's populated like so: var entityList = new ArrayList(); foreach (var userVal in collectionOfUserInformation) { PickerEntity ...
0
votes
1answer
13 views

Deploying Application Page Project 2 Different Places

I have 1 application page project and it is deployed. Now I want to make a change to it and deploy it somewhere else (same server and site) without retracting the currently deployed one. From one ...
0
votes
1answer
167 views

Use application page as edit form on list?

I createad an application page and put it under /_layouts/, in the list definition I specified the edit form like so: <FormUrls ...
1
vote
0answers
161 views

Parser Error in IFrame When added in Application Page

I am creating a SharePoint-2013 web-part in that I have created Application Page. In that page I am using <iframe> element only there are no any other elements just for testing. But it is ...
0
votes
1answer
191 views

How to deploy a Custom Page in a SP 2013 SandBox solution?

Is it possible to deploy a custom WebPage in a SP 2013 SandBox Solution?
0
votes
0answers
48 views

Documentation for SharePoint 2010 OOTB web controls

Often I have a needs to provide different customizations to list, libraries, webs via custom action, which opens custom application page (in modal dialog). I place on page controls to provide UI. In ...
0
votes
1answer
214 views

How to add .aspx page to Module in Sandbox solution?

When I am adding any application page(.aspx) to my Module in the Visual Studio Project of SandBox Solution, it is always adding that page in Layouts(Mapped) folder. And not adding that page in the ...
3
votes
2answers
454 views

SharePoint 2010 how to customize display form using application page or code behind

I am working on a project that requires code behind in the dispform.aspx as well as the edit and new form. The reson being, I am synching to a web service, on view of an item, I want to make a sall ...
0
votes
1answer
83 views

Deploying Aspx in specific subsite

I need to deploy an .aspx from visual studio, to a sharepoint subsite. I can deploy it fine in the layout folder. How can i deploy it in a subsite so that it can be added in the quick link section ? ...
0
votes
0answers
30 views

Creating internal hyperlinks in a custom application page

I am new to SharePoint, but have inherited a project where I need to add some custom Application Pages to a SharePoint 2013 site. I've gone through some tutorials that have illustrated how to create ...
2
votes
1answer
484 views

Understanding ghosting, unghosting, site pages and application pages

well I know definations of these terms as mentioned: Ghosted pages: Pages which are on file system and not on content db. Unghosted pages : pages which are on content db. Application Pages : normal ...
0
votes
0answers
80 views

Custom Central Admin page - access denied

I created a custom application page which is deployed to the web applications section in central admin, following this guide: How to: Deploy an Application Page to Central Administration I am a farm ...
0
votes
2answers
126 views

SharePoint 2010: Application Page: Javascript error: “is not a function”: works on one environment, not on another

I have a SharePoint solution with an Application Page, which references several Javascript files. I have a sandbox server where I test and a production server. I did not set up either of these ...
2
votes
1answer
109 views

Use different masterpage for pages library

How do I go about applying a custom masterpage just to "front end" pages? i.e. I want all of the administration parts of the SharePoint site to follow default look and feel (viewlsts.aspx, managing ...
2
votes
2answers
110 views

HTML placeholder attribute is not a valid attribute

On SharePoint application page I am using placeholder in like this: <input type="text" id="name" name="name" placeholder="your name" /> But placeholder is underlined and says: Validation ...
1
vote
0answers
115 views

Default List pages (NewForm.aspx/EditForm.aspx) and breadcrumbs

All, My understanding of SharePoint is that NewForm.aspx/EditForm.aspx et al. are Application Pages that for each List are initially fetched from the Hive directly and processed by ASP.NET, but can ...
1
vote
0answers
61 views

changing language on application page

I am using following code to change the language of HTML form on application page: <asp:Content ID="PageHead" ContentPlaceHolderID="PlaceHolderAdditionalPageHead" runat="server"> ...
1
vote
1answer
73 views

Security For Custom Application Pages

When managing security for any control on a page we use SPSecurityTrimmedControl. But what to do when defining permissions for a custom application page? How do we restrict unauthorized people to ...
2
votes
3answers
73 views

Changing language of custom application page

I am new to SharePoint. I am creating a custom application page (small registration form). I want to give users a facility to change language of the registration form. Is this functionality is ...
0
votes
1answer
34 views

SharePoint 2007 - How to configure different RootFolders for lists added to a page as web parts

For example: I have a page (http://examplesite/Pages/MyTeamPage.aspx) with two lists added as web parts. 1.Invoices 2.Tasks I want to show different folders of each list. Invoices - ...
1
vote
1answer
111 views

How to enable anonymous access to custom app page

I'm trying to make a custom application page which can be viewed by anonymous users. So far I've: Inherited the code behind from UnsecuredLayoutsPageBase Overriden AllowAnonymousAccess to always ...
0
votes
2answers
72 views

Does Pages in SharePoint 12 hive have code behind files

I am not sure if we call them application pages or something else but am talking about standard sharepoint forms like "NewForms.aspx" or "EditForm.aspx" for lists in 12 hive. Does they have any code ...
0
votes
0answers
171 views

Create custom login page for both windows and forms based authentication

I created one site with forms based authentication. Now I want to create custom login page for both windows and forms based authentication. For this I followed this post. In this for windows ...
2
votes
0answers
109 views

Has the search alert API in SharePoint 2013 changed from the 2010 and Preview 2013?

I previously developed a Visual web part to programmatic-ally create Search alerts based on the user input. I used a text box to capture the text and create a Query using the Keyword Query Class. Then ...
1
vote
1answer
51 views

Link to Application Page in Sidebar

This sounds like a stupid question, but I cannot seem to figure it out. From Visual Studio, I have deployed an application page to my local SharePoint server. I can get to it directly by entering ...
0
votes
1answer
67 views

How to get a custom webpart from a site using code?

I have created a custom webpart. I want to get that webpart and add it to my custom application page using code. How can I get it?
0
votes
0answers
44 views

How to deploy a custom popup window on Pages library

I have a custom popup window, deployed in the _layouts directory, that give me a security exception when an user try to load. I would like to deploy this popup (it's an application page with code ...
0
votes
4answers
1k views

Detected use of SPRequest for previously closed SPWeb object after SPQuery

this code run yesterday very well and today I've been trying to solve this error for hour now : Please close SPWeb objects when you are done with all objects obtained from them, but not before I ...
0
votes
1answer
34 views

How do i add a page to a web template

I have created a basic web template using the following post and added a custom list to it, this works fine. http://sebastiantegel.wordpress.com/2012/06/26/webtemplates-is-the-way-to-go/ I now want ...
0
votes
2answers
84 views

Access denied even though AllowAnonymousAccess is true

I have a weird problem. I'm making an application page public using protected override bool AllowAnonymousAccess { get { return true; } } I use the same ...
0
votes
2answers
140 views

Results.aspx Page Layout Broken

I have deployed a custom branding project as a Feature, to a SharePoint 2010 Publishing site (Intranet) - just some stylistic tweaks and a custom master page. When I perform a search and land on the ...
0
votes
0answers
98 views

Trying to deploy SharePoint 2010 Application Page with calls into Active Directory - Deploying to Farm

I have developed a SharePoint 2010 Application Page app (basically it's an ASP.Net app that runs in SP 2010.) It contains calls into Active Directory to test if the user of the app is in certain ...
0
votes
1answer
266 views

How do I add a user control from a separate assembly onto a Sharepoint application page?

Note: This question was originally posted in Stackoverflow and I was recommended to ask it here instead. There is probably a very simple solution to this problem but since I do not know Sharepoint at ...
0
votes
1answer
847 views

Redirect from Application Page to ~site/_layouts/newsbweb.aspx

I have created a Custom Action which appears on "Site Actions" and when you click on it, it opens a modal diaglog which is a Application Page. within this Application Page I want to redirect to ...
0
votes
1answer
167 views

SharePoint People.aspx Page is Visible for All Users

The SharePoint People.aspx page is visible for all users by default. Is there any way to restrict this page from certain readers?
1
vote
3answers
2k views

Get current page absolute url

I want to get the current page absolute url in sharepoint.. I'm using: this.Page.Request.Url.ToString() But for: http://e-albania.tirana.bz:6002/sites/ealbania02/_layouts/IISNewsBox/news_view.aspx ...
0
votes
2answers
201 views

How to map master page to the application page

Hello I created a application page in visual studio 2010. Now i want to mapp this to our master page. the default master page is, applicationv4.master. Now to map this to our application page? I ...
1
vote
1answer
804 views

Working with args option of SP.UI.ModalDialog.commonModalDialog

I have the following situation: In my Sharepoint 2010 ASP.Net Application page app I want to allow my users to select a Supervisor for an employee who's information they (the user) is modifying. For ...
1
vote
1answer
139 views

Windows authentication for an application page without Kerberos?

I'm investigating ways to integrate an existing SQL Server database into my firm's Sharepoint installation. I've put together some external content types, but I'd also like to develop an application ...
3
votes
1answer
154 views

Where to see the runtime errors occurred in custom application pages

I created one custom application page and deployed into the sharepoint site. When I open that application page which resides in the _layouts folder, it is showing runtime error. How to solved this? ...
2
votes
1answer
169 views

Is It Possible to Add the SharePoint List View Related Ribbon to the Application Page?

Is it possible to add the list view related ribbon to the application page? I have a list view webpart in my application page. Now I don't have any ribbon like list view web part. Is it possible to ...

1 2 3