ASPX is the file extension for an ASP.NET page. These pages typically contain static (X)HTML markup, as well as markup defining server-side Web Controls and User Controls where the developers place all the content for the Web page.

learn more… | top users | synonyms

1
vote
1answer
62 views

Access denied How can I fix this?

I have created feature that have a module that have a element file and a default aspx inside of it. The element file looks like this: <?xml version="1.0" encoding="utf-8"?> <Elements ...
1
vote
1answer
624 views

Uploading aspx file to document library

I am trying to upload an aspx page to a document library that I use the keep all my pages in. The immediate thing that sprung to mind was some kind of permissions problem, but this should not be the ...
0
votes
1answer
66 views

How would custom aspx pages with code behind be used for workflow forms

We have a situation where we developed reusable workflows, content types and InfoPath 2010 forms for a client as a proof of concept but now the client has decided they can't go ahead with the ECALs ...
0
votes
1answer
133 views

Error binding to object field in ASPX page (production only problem)

I have a custom aspx page in my SharePoint 2010 WCM site. Data is pulled from a list into a DataTable and alot of the fields are then bound to the page using the Eval method. Rather than using strings ...
1
vote
0answers
153 views

How to change ControlMode of SharePoint:FormField control on postback (it changes only after the second postback)

I have a control in my ASPX file and a button to do postback: <SharePoint:FormField ID="MyID" runat="server" FieldName="Title" ControlMode="Edit"/> <asp:Button ID="MyButton" runat="server" ...
1
vote
0answers
58 views

How to access an aspx page located in a different project?

I have a SharePoint solution with an empty SharePoint project and an ASP.NET project. My ASP.NET project has an aspx page I would like to access. How can I access this page from my SharePoint project? ...
1
vote
0answers
159 views

Custom aspx page with web part

What would be the best way to have a custom asp.net page which runs on sharepoint and displays a web part? TIA
1
vote
0answers
192 views

Sharepoint 2010 - item field updating not working on a document library

I have this code here from a webpart that creates a treeview from a document library. For each item in the list it will create two child nodes called "Up" and "Down". When you click up, it should ...
0
votes
0answers
26 views

Is i possible to render a visual webpart

I am trying to render controls inside a visual webpart but get the Error: Runat="Server" is missing so i googled out that i should use public override void VerifyRenderingInServerForm(Control ...
0
votes
0answers
44 views

SharePoint Designer 2010 Workflow creates ASPX form instead of InfoPath form

I tried re-installing my workflows on my server after a new deployment had run, but now I encounter the following behaviour: Instead of the previous InfoPath initiation form it creates an aspx form ...
0
votes
0answers
41 views

Are there any resources available on converting html pages to aspx for SP2010?

I am dealing with some shoddy html pages that have been slotted into a template which are not picking up the master page theme or appearing within the master page "frame". At the moment I see this ...
0
votes
0answers
143 views

Custom WebPartZone or Add Widget Area

Complete SP nub here. Running short on time and I have yet to find the answer I need here or on Google. What I got A Custom default/master/dashboard/landing/whateveryouwanttocallit page with a ...
0
votes
0answers
177 views

How do I set the value of the WebUrl query parameter of an SPDataSource?

I've put an SharePoint:SPDataSource element on an aspx page, which is going to be linked to an asp:DropDownList, but I can't find a value for the query WebUrl parameter that works. What am I missing? ...