Tagged Questions
0
votes
2answers
416 views
Sharepoint 2007 Powershell: $item.update() gives error that file has been modified
I am trying to programmatically update some metadata for a sharepoint item using powershell. Here is my code:
$web = getWebByURL("http://test-site/spadmin/")
$itm = $web.lists["Documents"].items[0]
...
0
votes
1answer
218 views
SharePoint OM wont' read item property
I have a list item with one field Classes which is a multiple choice lookup. I want to implement an ASPX page which contains a ListBox which is filled with values from the Classes field. The following ...
2
votes
2answers
875 views
Can an event receiver update a list item before the alert email is sent?
I have a requirement to expose a list item's ID value on the "DispForm.aspx" form and all alert emails for a particular list.
SharePoint is very "protective" of its IDs (or counter fields) and it ...
2
votes
6answers
3k views
How can I auto-increment a column?
I am working on a solution where I have a list with a column named LogIDNumber. For each new entry in the list, I would like to increment the LogIDNumber by one. I could use the ID generated by ...