Friday, December 21, 2012
Sharepoint exchange mailbox setup
http://www.bryanporter.com/
Sharepoint mixed mode authentication
http://spautomaticsignin.codeplex.com/
Claim based authentication
http://blogs.msdn.com/b/jjameson/archive/2011/02/19/configuring-claims-based-authentication-in-sharepoint-server-2010.aspx
http://www.bryanporter.com/
Sharepoint mixed mode authentication
http://spautomaticsignin.codeplex.com/
Claim based authentication
http://blogs.msdn.com/b/jjameson/archive/2011/02/19/configuring-claims-based-authentication-in-sharepoint-server-2010.aspx
Thursday, December 20, 2012
Customize list view webpart xslt
http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?PageType=4&ListId={72C1C85B-1D2D-4A4A-90DE-CA74A7808184}&pID=435
http://jasonssharepointblog.blogspot.co.uk/2012/10/add-and-customize-xsltlistviewwebpart.html
http://deannaschneider.wordpress.com/2012/07/23/modify-column-headers-in-xsltlistviewwebpart-sp2010/
http://maulikdhorajia.blogspot.co.uk/2011/06/sharepoint-2010-xsltlistviewwebpart.html
http://aspalliance.com/1680_Building_ASPNET_Web_Server_Controls_using_XML_and_XSLT.2
http://msdn.microsoft.com/en-us/library/ff602042(v=office.14).aspx
http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?PageType=4&ListId={72C1C85B-1D2D-4A4A-90DE-CA74A7808184}&pID=435
http://jasonssharepointblog.blogspot.co.uk/2012/10/add-and-customize-xsltlistviewwebpart.html
http://deannaschneider.wordpress.com/2012/07/23/modify-column-headers-in-xsltlistviewwebpart-sp2010/
http://maulikdhorajia.blogspot.co.uk/2011/06/sharepoint-2010-xsltlistviewwebpart.html
http://aspalliance.com/1680_Building_ASPNET_Web_Server_Controls_using_XML_and_XSLT.2
http://msdn.microsoft.com/en-us/library/ff602042(v=office.14).aspx
SharePoint webparts
http://office.microsoft.com/en-us/sharepoint-designer-help/web-parts-for-views-and-forms-in-sharepoint-designer-2010-HA101805424.aspx
http://bobmixon.com/wp-content/uploads/2010/08/Getting-to-know-the-Data-Form-Web-Part.pdf
http://yoursandmyideas.wordpress.com/2011/08/11/xsltlistviewwebpart-in-sharepoint-2010-uncovered/
http://office.microsoft.com/en-us/sharepoint-designer-help/web-parts-for-views-and-forms-in-sharepoint-designer-2010-HA101805424.aspx
http://bobmixon.com/wp-content/uploads/2010/08/Getting-to-know-the-Data-Form-Web-Part.pdf
http://yoursandmyideas.wordpress.com/2011/08/11/xsltlistviewwebpart-in-sharepoint-2010-uncovered/
Wednesday, December 19, 2012
To see a list of all application pools in IIS 7.x, run the following command in an elavated priviliges command prompt:
%windir%\system32\inetsrv\appcmd.exe list wp
For IIS 6.x or lesser the corresponding command is iisapp. The list shows application pool number and its name.
To recycle an application pool, use the following syntax:
appcmd recycle apppool /apppool.name: string
Powershell needs to refer to correct assembly to access details of application pools like so:
%windir%\system32\inetsrv\appcmd.exe list wp
For IIS 6.x or lesser the corresponding command is iisapp. The list shows application pool number and its name.
To recycle an application pool, use the following syntax:
appcmd recycle apppool /apppool.name: string
Powershell needs to refer to correct assembly to access details of application pools like so:
[Void][Reflection.Assembly]::LoadWithPartialName("Microsoft.Web.Administration")
$sm = New-Object Microsoft.Web.Administration.ServerManager
foreach($site in $sm.Sites)
{
$root = $site.Applications | where { $_.Path -eq "/" }
Write-Output ("Site: " + $site.Name + " | Pool: " + $root.ApplicationPoolName)
}
HTML table layout with div tag
http://coding.smashingmagazine.com/2009/04/08/from-table-hell-to-div-hell/
http://stackoverflow.com/questions/702181/replace-html-table-with-divs
http://www.htmlgoodies.com/beyond/css/web-development-case-study-upgrading-tables-to-divs.html
http://www.codeproject.com/Articles/47934/DIV-TABLE
http://www.brunildo.org/test/inline-block.html
http://jsfiddle.net/clairesuzy/bHMXw/
my code modified from stackoverflow above:
<style type="text/css">
div.block{
overflow:hidden;
}
div.block label{
width:160px;
display:block;
float:left;
text-align:left;
}
div.block .input{
float:left;
width:150px;
}
div.block select{
display:inline;
width:150px;
}
div.separator
{
display:inline;
border:none;
width:4px;
}
div.separator table{
display:inline;
border:none;
margin-left:10px;
margin-right:10px;
vertical-align:middle;
}
div.rowdiv{
display:table-row;
}
div.tablediv{
display:inline;
border:none;
vertical-align:top;
}
</style>
<h1>My code</h1>
<div class="block">
<label>First Name</label><div class="separator"></div>
<input id="txtFirstName"/>
</div><br />
<div class="block">
<label>Last Name</label><div class="separator"></div>
<input id="txtLastName"/>
</div><br />
<div class="block">
<label>New User?</label><div class="separator"></div>
<div class="tablediv">
<div class="rowdiv">
<input type="radio" /> Yes
</div>
<div class="rowdiv">
<input type="radio" /> No
</div>
</div>
</div><br />
<div class="block">
<input type="submit" />
</div><br />
http://coding.smashingmagazine.com/2009/04/08/from-table-hell-to-div-hell/
http://stackoverflow.com/questions/702181/replace-html-table-with-divs
http://www.htmlgoodies.com/beyond/css/web-development-case-study-upgrading-tables-to-divs.html
http://www.codeproject.com/Articles/47934/DIV-TABLE
http://www.brunildo.org/test/inline-block.html
http://jsfiddle.net/clairesuzy/bHMXw/
my code modified from stackoverflow above:
<style type="text/css">
div.block{
overflow:hidden;
}
div.block label{
width:160px;
display:block;
float:left;
text-align:left;
}
div.block .input{
float:left;
width:150px;
}
div.block select{
display:inline;
width:150px;
}
div.separator
{
display:inline;
border:none;
width:4px;
}
div.separator table{
display:inline;
border:none;
margin-left:10px;
margin-right:10px;
vertical-align:middle;
}
div.rowdiv{
display:table-row;
}
div.tablediv{
display:inline;
border:none;
vertical-align:top;
}
</style>
<h1>My code</h1>
<div class="block">
<label>First Name</label><div class="separator"></div>
<input id="txtFirstName"/>
</div><br />
<div class="block">
<label>Last Name</label><div class="separator"></div>
<input id="txtLastName"/>
</div><br />
<div class="block">
<label>New User?</label><div class="separator"></div>
<div class="tablediv">
<div class="rowdiv">
<input type="radio" /> Yes
</div>
<div class="rowdiv">
<input type="radio" /> No
</div>
</div>
</div><br />
<div class="block">
<input type="submit" />
</div><br />
Tuesday, December 18, 2012
Assign value of parameter to a control in list view
http://www.codeproject.com/Articles/194253/How-to-Customize-the-New-Item-form-to-take-paramet
http://www.codeproject.com/Articles/194253/How-to-Customize-the-New-Item-form-to-take-paramet
Monday, December 17, 2012
There is no OOB method of lists.asmx to create a new list item, instead use below link to create a list item using infopath & web services
http://msdn.microsoft.com/en-us/library/cc162745(office.12).aspx
http://msdn.microsoft.com/en-us/library/cc162745(office.12).aspx
Friday, December 7, 2012
SharePoint 2010: Move search box to top of a site
Use this style in masterpage to move search box to top dark bar in a sharepoint 2010 site
<style>
.s4-search {
RIGHT: 200px! important; POSITION: fixed; TOP: 10px
}
.s4-titlesep{
display:none;
}
td.s4-titletext h2{
display:none;
}
</style>
Tuesday, November 27, 2012
Thursday, March 8, 2012
Enable custom web analytics reports in SharePoint 2010
Enable custom web analytics reports in SharePoint 2010
Enable-SPFEATURE WACustomReports –URL http://sitecollectionURL
MSDN Thread: http://social.msdn.microsoft.com/Forums/en-US/sharepoint2010setup/thread/e017a327-f860-4f63-aaa7-5ad16ad4ba50
Enable-SPFEATURE WACustomReports –URL http://sitecollectionURL
MSDN Thread: http://social.msdn.microsoft.com/Forums/en-US/sharepoint2010setup/thread/e017a327-f860-4f63-aaa7-5ad16ad4ba50
Subscribe to:
Posts (Atom)
c# httpclient The remote certificate is invalid according to the validation procedure: RemoteCertificateNameMismatch
If we get this error while trying to get http reponse using HttpClient object, it could mean that certificate validation fails for the remo...
-
SharePoint has a great feature to set terms which can be used to tag contents and enable terms based navigation and several other interesti...
-
More often than not, this error simply means that SharePoint client secrets are incorrect. A detailed explanation and steps to resolve this ...
-
Secure Microservices Using JWT With Ocelot in .NET Core (code-maze.com)