2
votes
2answers
46 views

Event Receiver site creation

I've got this eventreceiver that fires after an item has been added to a list. The eventreceiver creates a subsite from a template I created myself. The only problem is, every first time I try to add ...
1
vote
1answer
132 views

Remote Event Receivers Troubles

So I've been working with the remote event receivers for Sharepoint 2013. I'm working with having them connect to a local IIS server to accept the inbound events as the Visual Studio tools make it ...
1
vote
1answer
56 views

Adding EventRecevier in SandBox Sharepoint2010

This is Sample of my Code SPList list = new SPSite(siteURL).OpenWeb().Lists[listName]; SPEventReceiverDefinitionCollection eventReceivers = list.EventReceivers; SPEventReceiverDefinition ...
0
votes
0answers
151 views

SharePoint 2010 Event Receiver to Copy Documents to SharePoint Online

I need to write an event receiver that will copy documents added on a local SharePoint library to a SharePoint Online (office 365) library. I have added a service reference to the copy web service ...
0
votes
1answer
111 views

Visual Studio 2010 opens “Create New Site” page in browser when I run “Start Debugging” instead of the site I am trying to debug

I am an Office 365 user and fairly new to Sharepoint. I am trying to write a sandboxed solution for SharePoint online. To do this, I have setup a local developer environment and am currently trying ...
1
vote
1answer
198 views

Why does my Event Receiver (sandboxed) not work on Sharepoint Online, but works perfect on premise

using System; using System.Security.Permissions; using Microsoft.SharePoint; using Microsoft.SharePoint.Security; using Microsoft.SharePoint.Utilities; using Microsoft.SharePoint.Workflow; namespace ...