User spdevsolutions - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T05:00:35Zhttp://stackoverflow.com/feeds/user/19086http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/315932/sharepoint-default-styles/319256#3192560Answer by spdevsolutions for SharePoint Default Stylesspdevsolutions2008-11-25T23:28:15Z2008-11-25T23:28:15Z<p>If you are doing a custom webpart, consider SPGridView for your tables, I believe it will use the standard sharepoint List table styles: <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.webcontrols.spgridview.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.webcontrols.spgridview.aspx</a></p>
http://stackoverflow.com/questions/225243/defaulting-webparts-on-a-users-mysite-in-sharepoint/230420#2304201Answer by spdevsolutions for Defaulting WebParts on a Users MySite in Sharepointspdevsolutions2008-10-23T16:29:24Z2008-10-23T16:29:24Z<p>The way we did it was pretty much what is described in the link above (<a href="http://blogs.msdn.com/sharepoint/archive/2007/03/22/customizing-moss-2007-my-sites-within-the-enterprise.aspx" rel="nofollow">http://blogs.msdn.com/sharepoint/archive/2007/03/22/customizing-moss-2007-my-sites-within-the-enterprise.aspx</a>). </p>
<p>Your best bet is probably to staple a Feature to MySite creation and have it poll the plumtree database, find the gadgets for that user, and add a 'Page Viewer' web part for each, pointing to the gadget's location. That said, you may want to reconsider blindly migrating all your plumtree gadgets into SharePoint. There may be much better 'SharePointy' ways to provide the functionality that your gadgets are currently providing.</p>
http://stackoverflow.com/questions/141169/c-dynamically-created-linkbutton-command-event-handler0C# Dynamically created LinkButton Command Event Handler spdevsolutions2008-09-26T18:35:02Z2008-10-14T14:10:05Z
<p>So I have a weird situation here... I have an System.Web.UI.WebControls.WebParts.EditorPart class. It renders a "Search" button, when you click this button, it's clickHandler method does a DB search, and dynamically creates a LinkButton for each row it returns, sets the CommandName and CommandArgument properties and adds a CommandEventHandler method, then adds the LinkButton control to the page.</p>
<p>The problem is, when you click a LinkButton, its CommandEventHandler method is never called, it looks like the page just posts back to where it was before the ORIGINAL "Search" button was pressed.</p>
<p>I have seen postings saying that you need to add the event handlers in OnLoad() or some other early method, but my LinkButtons haven't even been created until the user tells us what to search for and hits the "Search" button... Any ideas on how to deal with this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/185451/quick-and-dirty-way-to-ensure-only-one-instance-of-a-shell-script-is-running-at-a/185501#1855011Answer by spdevsolutions for Quick-and-dirty way to ensure only one instance of a shell script is running at a timespdevsolutions2008-10-09T00:39:51Z2008-10-09T00:39:51Z<p>The issues with some of the above answers is that they are not atomic, so you could still run into issues if two scripts tried to run at about the same time. </p>
<p>Try this instead:
<a href="http://books.google.com/books?id=QYu_v2R6fIQC&pg=PA772&lpg=PA772&dq=atomic+shell+script+operation&source=web&ots=yMC-nWkByX&sig=wwGuoCYPH6NtXp9UfZnNrWfs-Gc#PPA772,M1" rel="nofollow">http://books.google.com/books?id=QYu_v2R6fIQC&pg=PA772&lpg=PA772&dq=atomic+shell+script+operation&source=web&ots=yMC-nWkByX&sig=wwGuoCYPH6NtXp9UfZnNrWfs-Gc#PPA772,M1</a></p>
http://stackoverflow.com/questions/121935/sharepoint-webpart-with-ajaxtoolkits-accordion-control/122017#1220172Answer by spdevsolutions for Sharepoint WebPart with AjaxToolkit's Accordion controlspdevsolutions2008-09-23T16:08:45Z2008-09-23T16:08:45Z<p>Check out: <a href="http://www.codeplex.com/sharepointajax" rel="nofollow">http://www.codeplex.com/sharepointajax</a></p>
http://stackoverflow.com/questions/117135/resources-that-have-to-be-manually-cleaned-up-in-c/117269#1172690Answer by spdevsolutions for Resources that have to be manually cleaned up in C#?spdevsolutions2008-09-22T20:08:40Z2008-09-22T20:08:40Z<p>One place to be careful is Objects that <em>look</em> small to GC but are not... In the SharePoint API for example, the SPWeb object has a small footprint as far as the GC is concerned and so will have low priority for collection, but it has really grabbed a bunch of memory (in the heap I believe) that the GC doesn't know about. You will run into some fun memory issues if you are foreaching a whole bunch of these for example, always remember to use using or dispose! </p>
http://stackoverflow.com/questions/116697/sharepoint-security/117147#1171471Answer by spdevsolutions for SharePoint Securityspdevsolutions2008-09-22T19:55:27Z2008-09-22T19:55:27Z<p>You might also want to look into using ISA Server to help you out: <a href="http://blogs.msdn.com/jannemattila/archive/2007/07/23/isa-moss-makes-life-a-lot-easier-for-fba.aspx" rel="nofollow">http://blogs.msdn.com/jannemattila/archive/2007/07/23/isa-moss-makes-life-a-lot-easier-for-fba.aspx</a></p>
<p><a href="http://www.isaserver.org/tutorials/Configuring-ISA-Firewalls-ISA-2006-RC-Support-User-Certificate-Authentication-using-Constrained-Delegation-Part1.html" rel="nofollow">http://www.isaserver.org/tutorials/Configuring-ISA-Firewalls-ISA-2006-RC-Support-User-Certificate-Authentication-using-Constrained-Delegation-Part1.html</a></p>
http://stackoverflow.com/questions/72537/auto-number-column-in-sharepoint-list/105826#1058261Answer by spdevsolutions for Auto number column in SharePoint listspdevsolutions2008-09-19T21:35:01Z2008-09-19T21:35:01Z<p>So I am not sure I can really think of <em>why</em> you would actually need a "site collection unique" id, so maybe you can comment and let us know what is actually trying to be accomplished here...</p>
<p>Either way, all items have a UniqueID property that is a GUID if you <strong>really</strong> need it: <a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splistitem.uniqueid.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splistitem.uniqueid.aspx</a></p>
http://stackoverflow.com/questions/85444/sharepoint-item-level-access-performance/105763#1057631Answer by spdevsolutions for Sharepoint Item Level Access & performancespdevsolutions2008-09-19T21:25:33Z2008-09-19T21:25:33Z<p>The accepted answer is not actually answering the question correctly...</p>
<p>You should not use a workflow to do this, if you want people to be able to edit items they create and only read ones they did not, use "List->Settings->Advanced Settings->Item-level Permissions", and this <strong>is</strong> available for document libraries (since they inherit from SPLIST) it just does not show up in their "Advanced Settings" in the UI. You can set the ReadSecurity property to 1 and the WriteSecurity property to 2 on the Document Library.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splist.writesecurity.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.splist.writesecurity.aspx</a></p>
http://stackoverflow.com/questions/104293/how-do-i-run-another-web-site-or-web-service-side-by-side-with-sharepoint/105624#1056241Answer by spdevsolutions for How do I run another web site or web service side by side with Sharepoint?spdevsolutions2008-09-19T21:05:59Z2008-09-19T21:05:59Z<p>I depends on what you mean by side by side, if you are trying to make something inside the same URL path as sharepoint then the above answers about managed paths should do it for you, but there is also nothing stopping you from just creating another Web Site inside of IIS, sharepoint will only take over the requests coming to its specific web.</p>
http://stackoverflow.com/questions/101370/sharepoint-security-issue-in-layouts-user-aspx/105435#1054351Answer by spdevsolutions for Sharepoint Security issue in _layouts/user.aspxspdevsolutions2008-09-19T20:40:37Z2008-09-19T20:40:37Z<p>I assume you mean "Manage Permissions"? So as far as I can tell, there is no permission for "Let people manage the permissions of others but not be able to give anyone higher permission than they have"... "Manage Permissions" is effectively "Full Control". </p>
<p>SPSecurityTrimmedControl won't really help because it just changes what the user can see, not what they can do. They could still use webservices or the API to manage permissions.</p>
http://stackoverflow.com/questions/141169/c-dynamically-created-linkbutton-command-event-handler/201301#201301Comment by spdevsolutions on C# Dynamically created LinkButton Command Event Handler spdevsolutions2009-09-17T22:55:25Z2009-09-17T22:55:25ZThat looks like a cool trick, haven't tried it yet (this project got put on hold) but it looks like it would work.
Also now that we FINALLY have 3.5 installed in this environment, you could probably also just put your search button inside an UpdatePanel and do it all with partial page postback instead. http://stackoverflow.com/questions/141169/c-dynamically-created-linkbutton-command-event-handler/141195#141195Comment by spdevsolutions on C# Dynamically created LinkButton Command Event Handler spdevsolutions2008-09-26T22:13:10Z2008-09-26T22:13:10ZThe issue is that I won't know how many I need to make until the query is run... Is the only solution to do the query inside createchildcontrols as well?