Tagged Questions
0
votes
2answers
38 views
Using sharepoint 2010 on another server in VS?
How can I use sharepoint 2010 that is on another server in VS?
When I try to create a new project for creating visual web part, A message "Sharepoint not installed on this client" is showed.
6
votes
1answer
112 views
Protect wsp file from Reverse Engineering
How to protect wsp file so no one can read my source code. When we change wsp file extension from wsp to zip, it gives all dll file and this dll can be extracted from .net reflector and get all source ...
1
vote
0answers
69 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.
3
votes
1answer
130 views
Why Microsoft.SharePoint.WebControls over System.Web.UI.WebControls? [closed]
I am building visual web parts for SharePoint 2010 Foundation, using ASP.NET 3.5 in Visual Studio 2010. For those who are new, these are like making a custom "normal" .net control that you can drop ...
3
votes
4answers
290 views
Problem with Visual web part
Good day! I have an event handler that, when you add a document to the library redirects the user to a web form with the parameters of the document. In the web form, it displays the current user in ...
1
vote
2answers
232 views
Event Receiver redirect to Visual web part
Here is my Event Receiver to redirected to my visual web part:
public override void ItemAdding(SPItemEventProperties properties)
{
base.ItemAdding(properties);
properties.Cancel ...
1
vote
1answer
154 views
Change Sharepoint Calendar View from month to day
How to change calendar view from month to day on button click event without ribbon ?
0
votes
1answer
74 views
XmlFormView and QueryStringFilter
I'm working on a project to automatically generate some document libraries and pages. One of these pages I have to put a infopath form webpart and a TextFilter to send to this form some information (a ...
1
vote
1answer
308 views
Call Javascript on Sharepoint Calendar add button Click
How to call JavaScript in SharePoint Calendar Add Button Click event ?
2
votes
3answers
313 views
How to change active directory password from webpart?
How to change active directory User Account Password using code?
2
votes
3answers
513 views
Retrive data using Caml Query Join Operation
How can I retrieve data from two SharePoint List using Join CamlQuery ?
1
vote
1answer
80 views
0
votes
0answers
351 views
Advanced filtering XsltListViewWebPart with custom webpart
I have got simple list rendered by XsltListViewWebPart. I would like to create additional filtering options using custom visual web part to provide list item id's to filter XsltListViewWebPart on same ...
1
vote
1answer
56 views
Web Part Resources e.g. Images and Scripts [duplicate]
What is the best practice for including resources such as Images / Stylesheets / Scripts in a custom visual web part (built with Visual Studio)?
1
vote
1answer
1k views
How do I retrieve a user's LogIn name through the Created By column of a specific item in a document library
Created By Field Returns the following:
1073741823;#System Account
I want the following without string manipulation (i.e. without using substring to remove all of the characters before ";#"):
...