Hot answers tagged connection
3
If you're building the software on a non-Microsoft platform, you may be able to use the dll for the Client Object Model via Mono (or an equivalent?), but I wouldn't necessarily trust it to be stable. I know Mono works best with dlls compiled through Mono.
SharePoint offers a variety of web services to interface with, where you can perform a number of common ...
1
be sure:
to add your site into host file on VM (C:\Windows\System32\drivers\etc)
Add bindings to IIS (http://technet.microsoft.com/en-us/library/cc731692(v=ws.10).aspx)
hope it helps,
Andrew
1
This is assuming you are using SharePont Designer 2010; I would advise that you use the "Extract Substring from Index of String" Action.
This will allow you copy the ReqID value into a custom variable, trim that variable, then use the edited variable as your filter.Some thing like the below
"Copy from [Current Item:ReqID], starting at 4 (Output to ...
1
I think you have to trigger the new Request. My solution would be to Request __doPostBack and handle your Params via the Request properties.
In your case it would be:
var dates = new Array();
dates [0] = stringstart;
dates [1] = stringend;
__doPostBack("Button1", dates );
In the code himself these could be accessed by:
Request["__EVENTARGUMENT"];
Only top voted, non community-wiki answers of a minimum length are eligible