Tagged Questions
0
votes
2answers
510 views
OOB Search core result webpart
This might be very simple, but since I am new to Sharepoint, I could not find enough information that helped me to understand how to implement OOB Search core result webpart.
What I understand is, ...
1
vote
1answer
54 views
Update List Using Column And Textboxes
SPWeb web = SPContext.Current.Web;
SPList list = web.Lists["MyList"];
SPListItem item = list.Items[0];
item["Title"] = TextBox_Name.Text;
...
-3
votes
2answers
104 views
How to connect sharepoint application page into Sql server Programatically [closed]
I want the coding for connecting application page to Sql.Plz help me
2
votes
3answers
526 views
Get current Login Name inside RunWithElevatedPrivileges
How to get current Login Name.I'm getting "Sharepoint\System" as Login Name for every user. I need to get the name of the user.
public override void ItemAdded(SPItemEventProperties properties)
{
...
1
vote
3answers
76 views
setting security for listitem programatically
how to set security for listitem programatically?
My Requirements as follows:
In list , while adding item to it.
I have two radio buttons.(i)view by every one (ii) view only by me...if i select 'view ...
3
votes
1answer
163 views
Dynamic View on SharePoint lists
I want to create a dynamic view on my list. The list is filtered based on the current users' information coming from an external database i.e. based on which user is logged in, a value is fetched from ...