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 ...
2
votes
2answers
706 views
Why do custom Application Pages produce exceptions after installing June 2011 CU?
We recently applied the June 2011 Cumulative Update on our MOSS 2007 servers and had the February 2011 CU before that.
Since we installed the June CU all our custom application pages (e.g. an ASP.NET ...
3
votes
2answers
2k views
How do I deploy custom list edit forms in the sandbox?
I'm creating a List Definition for use on 2007, 2010 (Sandboxed), and 2010 (unrestricted) that will need custom new and edit forms; unfortunately the Sandbox specifically excludes custom application ...
-2
votes
1answer
324 views
How can i use the CRUD in SharePoint 2010 list by using the SharePoint controls?
HI please help me to write custom code to create a custom page using following method.
please let me know how can i use the custom control(I mean the SharePoint User Picker control). Are there any ...
0
votes
1answer
850 views
Running powershell within a SharePoint application page (C#)
I have a feature that deploys an application page to the layouts directory. I am attempting to update the content (or config?) database by executing a powershell command from c#.
The following code ...
6
votes
2answers
989 views
Webparts on Application Pages (_layouts)
Is it possible to have web parts on application pages. In other words having a web parts page in the _layouts catalog? Have tried inheriting from webpartpage, no errors but nothing happens when ...
1
vote
1answer
383 views
How to Create Task Items With Custom List Dataview
I have created 2 custom lists in Sharepoint 2010:
List #1: INTERNAL PROCESSES (fields: Process Title, Reference)
List #2: PROCESS STEPS (fields: Step Title, Step Description, Process Title[lookup of ...
1
vote
1answer
519 views
How do application pages compare to ASP.NET web forms?
We are considering moving from an ASP.NET Web forms model to SharePoint 2010 Application Pages. The main reason for this is so we can utilise the SharePoint Foundation solutions framework rather than ...
0
votes
1answer
194 views
What are some methods to secure Application pages?
I'm jumping into SharePoint 2010 (first SP version for me) and I'm building some application pages. I'm trying to secure the pages by dropping a web.config in the dir with role authorization. Is ...
1
vote
2answers
328 views
Remove Sharepoint RadioButtonChoiceField Focus on application page
I have an application page with a bunch of asp textbox controls and then a sharepoint RadioButtonChoiceField control. When the page loads it will always set focus to the RadioButtonChoiceField is ...
4
votes
5answers
6k views
How to programmatically add a webpart to a page?
I have created a webpart, now I need to add that webpart programmatically into the EditForm.aspx page. Can anyone help me on this.
1
vote
1answer
1k views
SharePoint 2010 Ribbon on Application pages
I'm trying to create a SharePoint 2010 application page (AKA layout page) to display some information and allow users to perform some custom functionality.
I need to display custom ribbon tab for the ...
1
vote
2answers
403 views
Getting the HtmlEditor control to work on a SharePoint 2007 Application Page
I need to use the HtmlEditor control within an application page in SharePoint 2007 but I'm unable to get it to work. Do you have any ideas what I need to do? Using the following aspx code the editor ...
0
votes
1answer
319 views
Get the current List and Item from an application page accessed from a feature link
I've created a new feature for a specific list. This new feature will show a button in the EditToolBar of a list page when editing. After clicking that new button, it should take you to another page ...
0
votes
1answer
141 views
How to show the current site lists names inside the application page?
How to show the current site lists names inside the application page?
1
vote
0answers
310 views
Exception loading SharePoint dependent assembly using reflection [closed]
I've created a custom Central Admin .aspx page that inherits from the OperationsPage base class, which is defined in Microsoft.SharePoint.ApplicationPages.Administration.dll. Naturally, I added a ...
0
votes
2answers
866 views
SpGridView and Get Selected Row Data
I am using SPGridView. I want to fill textboxes with the SPGridview Selected Row Data on a button click event.
Does anyone know how to do that?
My code:
txtCode= ...
0
votes
3answers
760 views
Feature Activation Error(Cannot Add Dll to GAC)
We have created a feature, which has 2 application pages. One is to activate the user control and the other one is for database configuration. For the database configuration, the user has to provide ...
1
vote
2answers
141 views
Updating web.config revert previous updates
I've a SPJob Scheduled with a package (wsp) installation which update web.config and a Application Page which also build to update web.config.
The problem is when I install the package it ...
2
votes
2answers
998 views
TransferToSuccessPage() when SPLongOperation is running
I am using SPLongOperation() , the scenario is:
Splongoperation operation=new splongoperation();
operation.begin();
try {
/// all working...
}
catch(exception excep)
{
...
0
votes
1answer
551 views
SPUtility.TransferToSuccessPage() throwing Exception
in my application page when i m using Sputility.transffertosuccesspage ,its throw an exception, " Unable to evaluate expression because the code is optimized or a native frame is on top of the call ...
2
votes
2answers
415 views
Custom Error Page for Sharepoint
We've created an Application Page which configure database for custom modules. We've designed this Application Page with SharePoint custom control.
There are some errors which can be occured when ...
0
votes
2answers
477 views
Custom Application Page does not recognize tagPrefix defined in custom web.config
I have a custom application page integrated in Centeral Administration.
My application pages are placed in a subfolder in Template\Admin folder.
I placed my own web.config in my subfolder and added ...
5
votes
1answer
672 views
How can I show an Application page on Feature Activation?
We are developing a custom module for SharePoint. The custom module is based upon SmartPart which means we have created UserControls. There was a problem with SmartPart deployment method as it ...
2
votes
1answer
84 views
Running code that creates a TimerJobDefinition outside of Central Admin
I have run into a problem several times now where I have developed a custom timer job, and I want my site collection administrators to manage the schedule of this job with a custom application page ...
1
vote
2answers
528 views
Can application pages be attached to a specific list
I have a scenario where I need to create an application page that is installed to the ECB menu of a specific list only. Is this possible? or is the only way to do it associating the elements file with ...