Tagged Questions
0
votes
0answers
8 views
What's the best way to create a replication/load balancing module?
We have a sharepoint doucment library, the site consist media files(like images, word document, .psd file) and then we have a local CME (Alterian) which can be integrated to the SharePoint library in ...
2
votes
1answer
50 views
Listing all the documents in SharePoint server using C#?
I'm new to SharePoint server. I need to get the list of all document stored in SharePoint server, not in particular user site. Is there any way to get all documents list , name or count using C#?
...
0
votes
2answers
25 views
How to embed image in SharePoint Workflow Association Form?
I am developing a custom SharePoint workflow in Visual Studio. I have a custom association form (ASPX) and I'd like to display an image, which is embedded into the project (and subsequently wsp).
...
2
votes
2answers
37 views
Navigation on webpart
I don't really got a problem just a question. After googling around I couldn't find any answer on what I'm looking for.
Is it possible to put a <asp:TreeView/> or multiple ...
0
votes
1answer
36 views
Listbox in webpart has no selection
I'm having a problem that's really blowing my mind right now, because it seems like some basic .net functionality isn't working properly. No doubt I'm missing something really obvious. I could really ...
0
votes
2answers
24 views
How to round a datatime LocalTime to the onkly datatime. Not to the time with hours
I have got a code:
DateTime dzienStart1;
DateTime dzienStop1;
dzienStart1 = dzienStart.ToLocalTime();
dzienStop1 = DateTime.Now.ToLocalTime().AddMonths(-2).AddDays(-1.0);
Whem I look at a date in ...
0
votes
1answer
94 views
Unique ID get selected list
How do i do so i can work on multiple lists? This works if i'm working with one list. (SPSiteDataQuery)
SPWeb web = SPContext.Current.Web;
SPList myList = web.Lists["Staff ...
0
votes
1answer
47 views
Time in Sharepoint
We have got two method in Sharepoint to get the time. One is ToUniversalTime() an secound is ToLocalTime() But when we are in server and have got a aplication instaled on server which kind data method ...
0
votes
1answer
54 views
Optional Parameters in C# at Sharepoint
How Could I set optional parameters when programing in sharepoint. Now I'm while debuging getting error:
Feature 'optional parameter' cannot be used because it is not part of the 3.0 C# language ...
0
votes
0answers
82 views
Authenticate Site Minder using httpwebrequest and httpwebresponse
We are trying to authenticate the site Minder by using httpWebRequest and httpWebResponse and read the cookies. But we are unable to get the cookies
string url = "https://xxxx/login.jsp";
...
0
votes
1answer
63 views
Gridview not showing date
I'm working with a gridview, so i can show data from my three lists. I get it to show the title, but the date doesn't appear! Check the if statement.
using (SPSite site = new ...
0
votes
1answer
72 views
Search multiple lists
I want to search through my lists. And show it on a repeater control. On my dropdown i got 3 options, (All, List1 and List2). But my If statement wont work. The else is working fine, but it hangs when ...
0
votes
1answer
42 views
Listinstance url
I'm working to show my attachments in a repeater control. It works ALMOST perfectly. I just want to get the full url to my attachment. Right now i'm getting: ...
0
votes
2answers
827 views
Could not load file or assembly 'Microsoft.Sharepoint.Sandbox' or one of its dependencies
I created an ASP.net webapplication and i have used assemblies Microsoft.SharePoint;
and Microsoft.Office.Server.UserProfiles in it.. i get a run time error
"Could not load file or assembly ...
0
votes
1answer
107 views
Repeater control reverse order
I'm working with a repeater control that displays my list items. Everytime i add an listitem it displays it on my repeater. But i want the repeater to display the latest added item at the top.
Any ...