The process of developing software, including requirements gathering, solution design and analysis, implementation, testing, deployment, support and maintenance.

learn more… | top users | synonyms (3)

0
votes
1answer
36 views

System.UnauthorizedAccessException was unhandled by user code in simple code

I got this exception in very easy code and I have running with elevated privileges around it. private void ChangeVersioningOnDocumentLibrary(SPListItem item, SPItemEventProperties properties, SPSite ...
0
votes
0answers
15 views

Wrong attachment url when display on image control

First i'm saving the attachment to a list & the url to a db. But when i want to get the url from a db and show it on a image control i dont get the image to be shown. ...
1
vote
2answers
370 views

How to retrieve Users and Groups seperately from a “Person or Group” column via C# code?

I have a field in the discussion list, which allows the initiator of the discussion to specify the people to share the discussion with. This field is typed as 'Person or Group' that allows selection ...
1
vote
1answer
134 views

Remote Powershell: New-SPUser : Access is denied. (Exception from HRESULT: 0x80070005)

I am running a remote powershell script which attempts to setup a web-application and site collection and then attempts to add a user to that site collection. I receive the following error: ...
1
vote
1answer
80 views

Add quicklaunch link with querystring parameter programatically

I want to add some links to Quicklaunch bar. The link needs to have query string parameters, eg.: /sites/project/default.aspx?mode=filter string url = "/sites/project/default.aspx?mode=filter"; ...
1
vote
2answers
233 views

Error in Web.EnsureUser(user) :- User Not Found

Hey Friends I am trying to develop a web part in that I am fetching the user name. But doing this I am getting the error that User cannot be found. But the main thing is that in the line where I ...
0
votes
3answers
144 views

custom document library web part with shared documents

I've been struggling a lot to create custom web part that looks similar to "Document library" in share point. I've tried several approaches but finally figured out it. Here's my piece of code: // ...
0
votes
1answer
35 views

Removing old content databases cleanly

I have created and deleted a web application without specifying to remove the content database. What is the cleanest way for me to delete the content database?
0
votes
3answers
129 views

Custom List Form Will Not Deploy

A demo List Form using Visual Studio 2010 to test and experiment with a few things. Nothing at all was added inside the project. Functionality, etc, will be added later, but at this point it was ...
0
votes
1answer
23 views

About SPFolders & DocumentSets

I've been working in a feature for mi current project that involves folders. I've noticed that If you add files or subfolders to a folder and then you try to update the folder's metadata an exception ...
0
votes
0answers
22 views

Ideal Development and deployment environment for SharePoint

I have an intranet and extranet application. This got the features, sitedefinitions, control templates, site columns and some web parts. All these units are divided as two solutions.Branding is one ...
-1
votes
1answer
14 views

How to parse different valus to table from listbox thats on same Line [closed]

I have a dropdownlist and a checkboxlistor , when selecting from them a display the value in a listbox, so i can add multipel, like this.. Drop1-check1... Now the problem is how do i parse them them ...
0
votes
0answers
18 views

Page_load postback false how to

I want to set pageload to not postback the whole SharePoint site. Is it possible and how do I solve it? Because every time I press a sender it updates the site?
0
votes
1answer
91 views

Appropriate List permissions and read/write using visual webpart

I am learning SharePoint and just learned how to develop Visual Webparts and read data through CAML and write data also. I have a portal where I have one site collection and under that site collection ...
0
votes
1answer
74 views

Iterating over user profiles in Sharepoint Online 2013

With the on-premise instance of SharePoint, I am able to call the GetUserProfileByIndex from the User Profile Service to iterate over user profiles. However, with SharePoint online 2013, I get the ...
0
votes
0answers
4 views

Seperate two listbox values

I'm working with a SP project there i want to save a CV. I don't really know how to do this step. Any suggestions?
0
votes
3answers
152 views

Link to a document of shared document library

My specifications: Windows Server 2003 Visual Studio 2008 Windows Sharepoint Services 3.0 visual studio 2008 extension for Sharepoint services 3.0 I'm creating a web part with a SPGridView. I ...
1
vote
0answers
58 views

Upload clickonce to sharepoint

I'm following this tutorial to upload a clickonce application to sharepoint. This is my Elements.xml: <?xml version="1.0" encoding="utf-8"?> <Elements ...
1
vote
0answers
16 views

Add panels to site dynamically

I have a main panel which is called linksAndPicturesPanel within this panel, I want to add more panels -> 1 panel for the link and 1 panel for a picture (red and green). Furthermore, it should be ...
0
votes
0answers
5 views

I have got a program which I was wrie. How Could I do 5 instation of it in Visual Studio

I have got a Program, which I was write. How could i do diferent 5 or more Instation by Visual Studio. Hov Copy Event Receiver and difrent list. I want in production Server have got a very fast ...
0
votes
1answer
68 views

Show hidden textbox and label after dropdownlist selectedindex changed

C# code: protected void DropDownListDB_SelectedIndexChanged(object sender, EventArgs e) { if (DropDownListDB.SelectedValue == "Other") { LabelIfOtherDb.Visible = ...
0
votes
1answer
94 views

GAC and Signing assembly with strong name

I am following someone's tutorial like the following http://ranaictiu-technicalblog.blogspot.com/2009/11/sharepoint-create-custom-web-service.html Here are the steps i need to follow Create a ...
0
votes
1answer
111 views

Sharepoint 2013 Site Title only show parent site

I have a team site and am using the Site Title snippet, but I don't want that changing to show my subsite titles. For example here is an example team site hierarchy we are using for our companies ...
0
votes
0answers
42 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
2answers
348 views

How can i programmatically get the url of a “Page” located in “Pages” library? SharePoint 2010

I am building a site map using asp:TreeView control, the site map will show a structure consisting of the root site collection, subsites and pages. I am note able to get the url of those pages so i ...
0
votes
5answers
120 views

I like to get to the top in SharePoint, Please help me [closed]

I am enthusiastic in learning SharePoint, I want to know some detail. From where should I start learning SharePoint to get expertise. How should I get to the top in SharePoint? I want to keep ...
0
votes
1answer
25 views

Listbox duplicate values

SOLVED protected void ButtonAddDevTools_Click(object sender, EventArgs e) { foreach (var vItem in ListBoxDevTools.Items) { if (ValueAlreadyInListDevTools(vItem)) ...
0
votes
0answers
109 views

Create user profile programmatically

I want to overwrite the existing user profile that are in sp with my own one. public string AccountName { get; set; } public string WorkPhone { get; set; } public string Department { get; set; } ...
1
vote
1answer
50 views

Creating Browser Enabled Form Without Using InfoPath

I'm relatively new and inexperienced with SharePoint 2010 development and I have a question that may sound a bit strange. I'd like to be able to create a Form Library that has entries opens into a ...
2
votes
2answers
121 views

Deploying a webpart to multiple site collections?

Is it possible to Deploy a Webpart to multiple Site Collections, and not only to one?
1
vote
2answers
105 views

Can a sandboxed WebPart access SPWeb.AllProperties

Well, subject says it all. Although MSDN has plenty of info what classes are accessible in a sandboxed solution I just couldn't find the info if I can read or write to SPWeb.AllProperties. Basically ...
0
votes
1answer
180 views

Get all items with specific fields without query - SharePoint Client Object Model

Is it possible to get all items from a single list (getting specific fields) without using a CamlQuery? If I try to use context.Load(oList, ...), I can't use the Include method as the List class ...
0
votes
1answer
53 views

SharePoint Farm feature not deploying to all members

I have a SharePoint 2010 farm solution (with some timer jobs tied to SPTimerV4 and a LockType of None) that is not deploying it's GAC'ed DLL to all servers in the farm. This timer job must run on ...
1
vote
0answers
64 views

Complex CAML, where parameter is null?

I have a page with 2 webparts One webpart is just a form with a textbox. 2nd webpart is listviewwebpart that filters based on the first webpart input. However the user wants that when the page is ...
3
votes
2answers
388 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
50 views

Gridview is not displaying

I have added a gridview in my Visual Studio project. The gridview is set to visible. After deploying the project the GridView is not displayed, but I don't know why. What can be the problem? I feel ...
1
vote
1answer
279 views

Display SelectedItem.Value from Dropdownlist and Checkboxlist in a Textbox

Solved to add from dropdownlist,checkboxlist in a textbox multiple protected void ButtonAddDataBase_Click(object sender, EventArgs e) { string dropDownListValue = ...
2
votes
3answers
163 views

Simultaneous development environment for SP2010 and SP2013 in single OS

I have on my laptop a development environment as win7 with std IIS, SharePoint 2010 Server, SQL 2008 R2 and Visual Studio 2010. I already installed Visual Studio 2012 side by side. But what about ...
0
votes
3answers
55 views

On ItemUpdating modify property

I have an issue, with this event. What my purpose is: i want to update one of the properties based on few criterias, so i want do fill a field A if field A is empty and the field B is not empty and ...
0
votes
1answer
118 views

Setting my development and production environment for SharePoint 2013 server

I need to set up the development environment and the production environment for SharePoint 2013. I have read the following link on MSDN http://technet.microsoft.com/en-us/library/cc262485.aspx which ...
1
vote
1answer
35 views

Why there is Server Connection “Online” While Developing WebParts in VS2012 for SP2013

I am new to SharePoint. And though I am taking my training on CloudShare by creating cloud machine of SharePoint-2013. When ever I am developing any visual WebPart in Visual Studio 2012 there is ...
2
votes
2answers
285 views

Sharepoint 2013 Community site: Unable to reply on a post

Im working on Sharepoint 2013 Community site template. When I manually create a discussion in discussions list liking and replying features are working fine, but when I programmatically add a ...
0
votes
1answer
373 views

Downloading files from sharepoint programmatically C#

I would like to know what are benefits/drawbacks when using either of these methods for downloading a document from Sharepoint using Microsoft sharepoint library public void Download(string ...
0
votes
1answer
539 views

Downloading files from sharepoint programmatically C#

I would like to know what are benefits/drawbacks when using either of these methods for downloading a document from Sharepoint using Microsoft sharepoint library public void Download(string ...
0
votes
0answers
57 views

Determine What Custom Site Template A Site Was Created From

Hey SharePointateers, I've hit a problem I've given up on solving, so I've decided to cheat and ask here. If this doesn't work I might have to do something drastic like read a manual or something. ...
0
votes
1answer
78 views

How should I use sharepoint for facility booking?

Our company use sharepoint 2010, we would like to use sharepoint for facility booking, following are some basic requirements: 1.Users can submit application form( including who submit, where they ...
0
votes
1answer
161 views

Programmatically add new fetched properties to webpart

I have a webpart which I extend and i would like to programmatically add extra fetched properties to those that already exist, but I cannot succeed in that, maybe you could be of help to me. So here ...
1
vote
1answer
194 views

XSL Style Sheets itemstyle.xsl

I have dynamic image slide show in website sp2010 . the first picture is hyperlink to other website. I found for image in itemstyle.xsl Can I remove (hyperlink for image ) from itemstyle.xsl from ...
2
votes
2answers
36 views

On AddingItem event in Document Library distinguish is it a document or a folder

enter code hereI have a small issue, I cannot seems to find a way to find out what time of item is being added, so i have a method AddingItem and here i need to know is this item a FOLDER or just some ...
0
votes
2answers
30 views

When to use Release configuration in Visual Studio for SharePoint solutions?

The regular SharePoint solution development outputs mainly assemblies, which is deployed to GAC and used by other stuff (pages, webparts, controls, etc.). From googling I found that Release ...

1 2 3 4 5 36