Tagged Questions
0
votes
2answers
365 views
How to get FBA users' profile with ASP.NET
I'm getting Windows users' profiles, in my webpart, doing the following:
UserProfileManager pm = new UserProfileManager(SPServiceContext.Current);
SPUser spuser = web.AllUsers.GetByID(user.Id);
...
0
votes
1answer
13 views
chart webpart Sharepoint 2010
how to create a custom web part/visual web part that will generate a chart from an existing sharepoint list. Is there any possible way of doing this aside from using the OOB Chart Web Part? We have ...
0
votes
1answer
42 views
How to create a custom chart webpart
I would like to create a custom web part/visual web part that will generate a chart from an existing sharepoint list. Is there any possible way of doing this aside from using the OOB Chart Web Part?
0
votes
1answer
41 views
Pass user credentials to JSP website from SharePoint website
I have developed a JSP website. I also have a SharePoint server based website.
Let's call my JSP website to be www.xyzjsp.com and my SharePoint based website to be www.mySPwebsite.com
How can I ...
0
votes
1answer
301 views
In sharepoint 15, How do I use the person field in a custom web part?
Sharepoint 2013 gives a pop up when the cursor is kept on top of a users name ( the pop up allows to connect to email, lync, etc)
I need to add that field in my custom webpart... Is there any way ?
2
votes
0answers
89 views
Change month in SharePoint MonthlyCalendarView control
How to change month in SharePoint MonthlyCalendarView Control? It seems, there is no way to change month in calendar or change view of calendar.
1
vote
0answers
49 views
CreateChildControls() in Visual Web Part in SharePoint 2010 called twice
(x-post from http://stackoverflow.com/q/17065543/1943)
I have a Custom SharePoint 2010 Visual Web Part which I've realized is calling the CreateChildControls() method twice. I've tried setting the ...
1
vote
0answers
28 views
Import Error on ChartDataProvider Webpart
My Sharepoint project contains a visual Webpart which retrieves data and works fine.
In addition to that, I want to display some Chart webparts which visualize this data.
In order to do so, i added a ...
0
votes
0answers
54 views
Error:- The name 'Request' does not exist in the current context
I have added a web part in a farm solution:-
using System;
using System.ComponentModel;
using System.Web.UI.WebControls.WebParts;
namespace SharePointProject5.nv
{
[ToolboxItemAttribute(false)]
...