­

Best Job Search Tips – By Alison Doyle

0 Comments
Referred from URL http://jobsearch.about.com/od/jobsearchtips/a/bestips.htm Here are the best job search tips from career experts for job seekers who are starting a job search or who want to get their job search moving. If there's anything on the list that you're not incorporating in your job search, consider giving...

Continue Reading

Sharepoint Tips n Tricks - Part 2

0 Comments
In continuation with earlier post -Sharepoint Tips n Tricks1) Check whether a given SPField exist or not before fetching value from it: string columnValue = string.Empty;string columnInternalName = string.Empty;string fieldName = "Myfield";SPListItem listItem; //Code to get SPListItem//Check required SPField exist or notif (listItem.ParentList.Fields.ContainsField(fieldName)){ //Get internal name of SPField...

Continue Reading

SPFolder related operations in SharePoint

0 Comments
  1) Get SPListItem(s) of a particular SPFolderSPList splist;SPFolder spfolder; //Get the required folder instanceSPQuery spquery = new SPQuery();spquery.Query = string.Empty;spquery.Folder = spfolder;spquery.ViewAttributes = "Scope=\"Recursive\""; //For nested folder structureSPListItemCollection itemCol = splist.GetItems(spquery)2) Create a SPListItem based on a custom ContentType or SPFolder ContentTypeSPWeb spweb; //get the SPWeb instanceSPContentType...

Continue Reading

Status Reports

0 Comments
Reference URL http://herdingcats.typepad.com/my_weblog/2010/03/status-reports.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+typepad%2FHerdingCats+%28Herding+Cats%29&utm_content=Google+Reader This is a topic near and dear to my heart, along with many others. Brad has a nice list of items that should be in a status report. Project title Project description Contact information for key project personnel Quick view high-level status on project, budget,...

Continue Reading

App.config for C# Library

0 Comments
In case you are providing a dll which needs to make use of the entries in the app.config, they have to be added in the app.config of the final project in which your dll will be added as reference. Say for example, your dll will be used in...

Continue Reading