We have a page on our site where we want to display biographies of our team members. What we ultimately want to do is have the data stored in a list form with a custom view, but rather than take up the whole page with a giant list we'd like to have a drop down list that when you select the name you want to see it displays that person's information in the page.
Can this be done and does anyone know how?
You can filter most columns based on data your collecting. Move your mouse cursor over the column heading, there will be a drop down arrow that appears. Click that to filter.
This Code My be help for u
myItems = master.GetItems(query);
foreach (SPListItem item in myItems)
{
item["varApproveRejectStatus"] = "COMM_PUBLISHED";
item.Update();
}