SharePoint Foundation is the platform for all products in the SharePoint family. It contains all of the core functionality and architecture drawn on by the commercial versions of the package, but is free to download
0
votes
0answers
76 views
Get RowIndex In GridView RowCommand Event Using DataKey
protected void OnRowCommand(object sender, GridViewCommandEventArgs e)
{
if (e.CommandName == "Show")
{
int index = Convert.ToInt32(e.CommandArgument);
int documentID = ...
0
votes
0answers
41 views
send values from textboxes in detailsview to gridview
send values from detailsview with two textboxes when pressing button and display i gridview
<Fields>
<asp:TemplateField HeaderText="Name" > ...
0
votes
0answers
81 views
Document Library Templates (Word, Excel, PPT)
We implemented a document library for Internally used to be able to save templates in our Intranet SharePoint 2010 and the problem is comming from the office version 2010:
When we use Office 2007 ...
0
votes
0answers
31 views
send values from two textboxes to gridview using this query how to
protected void Button2_Click(object sender, EventArgs e)
{
SPWeb web = SPContext.Current.Web;
SPSiteDataQuery query = new SPSiteDataQuery();
...
0
votes
0answers
28 views
Display selected link in detailsview from gridview
protected void OnRowCommand(object sender, GridViewCommandEventArgs e)
{
// i think i should write something here so when i click the link to show just that title in the Detailsview . i think ...
0
votes
0answers
81 views
Sharepoint integration endpoint (WCF)
This is an architectural question:
I want to create an endpoint for Sharepoint 2010 for outer systems. Its basic functionality is that it is supposed to broadcast info about changes done to ...
0
votes
0answers
15 views
Connectablewebparts Grinview Linkbutton display in grinview in other webpart
Provider.Cs
public class NewsFeed : WebPart,IData
{//Provider
// Visual Studio might automatically update this path when you change the Visual Web Part project item.
private const string ...
0
votes
0answers
18 views
Unable to search office.com for new solutions in SharePoint 2010
Has anyone else had an issue viewing templates from Office.com when trying to create a new site.
Steps to reproduce:
Site Actions
New site
Browse From - Office.com
The only thing that shows up is ...
0
votes
0answers
17 views
“Date” from splist wont show up in GrindView But The Title Shows up
<asp:GridView ID="GridViewNewsFeed" runat="server" AutoGenerateColumns="False"
EnableModelValidation="True" CellPadding="4" ForeColor="#333333"
GridLines="None" Width="150px">
...
0
votes
0answers
183 views
DataBinding: 'System.Data.DataRowView' does not contain a property with the name 'Date'.
if (DropDownListFeeds.SelectedItem.Value=="All")
{
SPWeb web = SPContext.Current.Web;
SPSiteDataQuery query = new SPSiteDataQuery();
...
0
votes
0answers
28 views
Grouping: group header via SOAP
I have a client that communicates with SharePoint via SOAP messages.
I call Lists.asmx#GetListItems to get List Items with grouping query applied:
<query>
<Query>
<GroupBy ...
0
votes
0answers
29 views
Attachments.UrlPrefix!
<a href="
<%# (new SPFieldUrlValue(((SPListItem)Container.DataItem).Attachments.UrlPrefix.Url)) %>">
<%# (new ...
0
votes
0answers
17 views
Attachment Help Please
When uploading one attachment to the list my repeater displays is it.
When uploading a second attachment this attachment also overwrites the first attachment in my repeater why?
private ...
0
votes
0answers
92 views
Multi File Upload Not working SP Foundation 2010
I am having a strange issue with Multi-File Upload with 2010 Sharepoint Foundation. I am running Office 2010 Pro Plus on Windows XP, and whenever I try to upload multiple documents, I get a status of ...
0
votes
0answers
39 views
using database attach for migrating MOSS 2007 site to sharepoint 2010 gives error “HTTP/1.1 200 OK Server: Microsoft-IIS/7.5 Connection: close”
I am trying to migrate a MOSS 2007 site to sharepoint 2010 using database attach approach. i have taken a backup of the 2007 site content db, created a new web application, deleted the content DB from ...
0
votes
0answers
43 views
Turning off alerts for users
I am planning to do lot of changes to sharepoint site but I want to temporarily disable the emails notifications (Alerts) for the users while I am doing those changes. Could you please suggest how can ...
0
votes
0answers
66 views
SharePoint access to temp folder is denied
I'm working with SharePoint 2010 Webparts. I have created a document library in SharePoint. I have uploaded an excel file inside this doc library. I need to store this Excel file inside a temporary ...
0
votes
0answers
45 views
Different site layout for different users?
I'm fairly new with SharePoint and I'm currently working with SharePoint Foundation 2010 and SharePoint Designer 2010. Prior to that I was working in the Cloud version of SharePoint.
I somewhat know ...
0
votes
0answers
54 views
Run custom javascript when external list table loaded
Is there any way to run custom javascript after table with external custom list is loaded on page? The external list table is loaded on page with some delay and I would like to modify its content ...
0
votes
0answers
148 views
SharePoint Delete confirmation message shows up twice
I'm facing a problem with delete confirmation message box which shows up twice. my scenario is the following :
- I have a SharePoint Site.
- Document library
- Some custom actions i developed for the ...
0
votes
0answers
48 views
Best way to implement “dashboard” within custom list?
My dashboard in this case is simply a waterfall of roughly 60 activities that need to be completed for each item. Ideally, people will be able to switch to the dashboard content type to see the status ...
0
votes
0answers
307 views
Critical Error in Event Viewer: System.TimeoutException for Microsoft.Office.Server.UserProfiles.LMTRepopulationJob
I just installed SharePoint at my workplace. I have been unsuccessful in creating a web application, but I am getting an error in the Event Viewer that I should probably handle first. It says it is ...
0
votes
0answers
69 views
Is there a way to restrict or limit the Manage Permissions permission level?
Scenario:
A custom permission level is created that doesn't have as many rights as the Site Owner role (Full Control permission) but, has more rights than a normal Contributor role (Contribute ...
0
votes
0answers
53 views
How can I manipulate sharepoint ajax calls into the pipe line?
I built a SP server code that , (I don't know why) make some trouble into the client side code.
When the page is loaded for the first time, I notice that every single item in the page, they are not ...
0
votes
0answers
23 views
Removing results when entering advanced search
I'm having a little problem. As soon as I click on "Advanced Search" the next page shows the results, either of everything on the site collection if the simple search textbox was empty, or the result ...
0
votes
0answers
68 views
How to manage “log in with different user ” event of a sharepoint Web Site
Hi I built a Http Module that change Sharepoint MasterPage based on if the user logged in is a Owner/adminstrator.
It Works good! But when I try to change the user to test the module, when a click ...
0
votes
0answers
249 views
How Sharepoint pages life cycle works?
I built a HttpModule for sharepoint. But when I begin to debug the page request, I notice that the debugging has an strange cycle:
1 - context_PreRequestHandlerExecute()
2- page_PreInit()
3 - ...
0
votes
0answers
67 views
Alternate access problem
I have alternate access set for my site like
default : http://mycomputername
intranet: http://192.168.XX.XX
internet: http://204.xx.xx.xx:portnumber
I have problem from accessing it from internet
...
0
votes
0answers
56 views
How can Solve problems while debugging sharepoint web application?
Everytime I try to run my sharepoint application in debug mode, I get the error bellow:
0
votes
0answers
53 views
SharePoint 2010 - Errors creating WSRP Consumer Web Part to Peoplesoft Producer Web Part
I am trying to place a WSRP (Web Services Remote Portlet) to a PeopleSoft producer and am having some issues once connected. Please bear with me as I know nothing about how Peoplsoft works or this ...
0
votes
0answers
74 views
Search Server Express giving Internal server error
Installed search server express on sharepoint 2010. Content has been indexed. But when doing a search I receive an "Internal server error exception". The correlation id given on the error page is not ...
0
votes
0answers
99 views
Moved SQL databases for SharePoint 2010 and now have a 3351 error
I moved the SQL databases from a local instance to a remote SQL server. All permissions are the same. Everything seems to work but now I'm getting a 3351 SQL error every 30 minutes from the local ...
0
votes
0answers
30 views
No Content type available on site collection, even though they appear on subsites
Accessing content types on sharepoint foundation 2010 using /_layouts/mngctype.aspx (site settings>site content types) and nothing appears. When I goto a subsite within the same site collection all ...
0
votes
0answers
32 views
SharePoint Foundation 2010 usage logs can not be move or stopped
No matter what I do in the Central Admin console these logs run on and on
I can't move them to a drive with more spaec and I can't stop them
Any ideas apreciated.
thanks in advance
0
votes
0answers
152 views
SharePoint Client Object Model - Problem adding Item to List
The VB code below works in a stand-alone Silverlight app to add new items to a pre-existing list, but when I include it in a larger app it doesn't.
The only difference I can see is that with the ...
0
votes
0answers
73 views
spquery.query cannot be charged correctly
I'm charging my spquery with different parameters from a static class called Fields :
In fact I'm using this query to bind result data to my asp:grid view
using (SPSite mySite = new ...
0
votes
0answers
15 views
i am not able to see my External content on my sharepoint page
i am not able to see my External content on my sharepoint page but i am able to save the data from my page to in sql server can anybody please let me know the solution
0
votes
0answers
12 views
My Web Application Custom Feature Went Away After Installing Application Template from Fab 40
My Web Application Custom Feature Went Away After Installing Application Template from Fab 40 templates. How do I get my custom feature back? I am using WSS 3.0
0
votes
0answers
334 views
Event manager error: Could not load file or assembly or one of its dependencies. The system cannot find the file specified
I'm receiving the following error in my ULS logs when I try to create a new website in a migrated content database.
Event manager error: Could not load file or assembly 'xNamex, Version=3.0.0.0, ...
0
votes
0answers
339 views
Workflow Update List Item and Do calculation
I have two lists, on first list I have workflow with approval action and update list item action - when I approve some task my workflow update item on second list and it works properly. Then I would ...
0
votes
0answers
58 views
How Can I find field on list and Update that List - Workflow
How Can I use Workflow "Update List Item" and I suppose that once more workflow to update other list? I have two list and both lists has two the same field for example: name and numer. And while I add ...
0
votes
0answers
109 views
EditForm - custom control and updating field values
I'm using a custom rendering template on a list's EditForm. I created a UserControl with a asp:GridView and I would like to use it to insert mulit lookup field values (the standard multi lookup field ...
0
votes
0answers
13 views
Add Hyperlink coloumn inside a sharepoint picker dialogue results table
Can any one explain how to add hyperlink inside a sharepoint picker dialogue results?
0
votes
0answers
64 views
Update Panel JavaScript Error
How to Use a update panel on Sharepoint, I had one Update Panel, and when I put in him elements of the site i get a JavaScript Error: sys.argumentnullexception value cannot be null. I try find a ...
0
votes
0answers
38 views
When Using Update Panel sys.argumentnullexception value cannot be null
I have a Error of javascript, when I try to add Update Panel to my Site. I read in internet, that solution is SafeScriptManager, but i can find it in the inernet. Please Help me.
0
votes
0answers
84 views
UpdatePanel in Sharepoint javascript erors
Because in my Site I want to have a live view elements without PostBack all site, I put a UpdatePanel On my Site. In the Update panel is one DropDownList, One control of calendar, and table with two ...
0
votes
0answers
68 views
Refresh the Sharepoint Site maybe only update panel
I have a DropDownList I must have to refresh all site page to add a element to them from propeties in Event Receiver AddingItem.
How Can I refresh the page locally or maybe with in a Update Panel?
...
0
votes
0answers
56 views
Silverlight & SharePoint Client OM - MessageBox.Show not working in OnAddSucceeded or OnAddFailed
This may be more of a Silverlight issue than a SharePoint issue, but in the following VB code which adds items to a SharePoint list, I would expect to get two pop-ips ("Person added" and "Finished") ...
0
votes
0answers
49 views
Security Updates via Windows Update?
I am setting up a server to which I will be deploying the site collection and WSP files that I've developed locally.
Prior to restoring the site collection, I'd like to ensure that my build versions ...
0
votes
0answers
69 views
How to use the global navigation in the footer?
How to use the global navigation in the footer in Sharepoint 2013?
Thanks in advance.