tipsattricks.blogspot.com
Tips And Tricks: August 2009
http://tipsattricks.blogspot.com/2009_08_01_archive.html
Thursday, August 20, 2009. WSP Builder Extension Error (System.Workflow.ComponentModel.Compiler.ITypeProvider). Solving the error :The service 'System.Workflow.ComponentModel.Compiler.ITypeProvider' must be installed for this operation to succeed. Please ensure that this service is available. To fix this issue you have to edit your project file :. Goto project propertygroup :. For VB Project Project :. Labels: System.Workflow.ComponentModel.Compiler.ITypeProvider. Wednesday, August 19, 2009. Use Activato...
tipsattricks.blogspot.com
Tips And Tricks: Shrinking SQL Server Database and Transaction Log
http://tipsattricks.blogspot.com/2009/11/shrinking-sql-server-database-and.html
Thursday, November 19, 2009. Shrinking SQL Server Database and Transaction Log. I was spending time on shrinking the transaction log and DB, some of our developer boxes didnt have enough space.After a while i just figured so i thought of sharing with others. Backup log [DataBase Name] with truncate only - Not supported in 2008. DBCC SHRINKDATABASE ([Data Base Name], 10, TRUNCATEONLY). SQL Server 2008 use different approach because its no longer supports backup log with truncate only. SET RECOVERY SIMPLE;.
aspnetgotyou.blogspot.com
ASP.NET: June 2010
http://aspnetgotyou.blogspot.com/2010_06_01_archive.html
Tuesday, June 29, 2010. Binary to String Conversion in C#. Converting binary to different format is quiet common scenario for developers.Its just two line of code that will do the magic , but when time matter love search in google so if this blog help someone really happy for that. System.Text.ASCIIEncoding enc = new System.Text.ASCIIEncoding();. String str = enc.GetString(MyByteArray);. If you want to make sure that there is no data loss then use Base64 Encoding. XDocument or XElement with XmlNamespace.
aspnetgotyou.blogspot.com
ASP.NET: November 2010
http://aspnetgotyou.blogspot.com/2010_11_01_archive.html
Wednesday, November 3, 2010. How to Get Current User Name. All the developers might have coded atleast once for finding the current context User. System.Windows.Forms.SystemInformation.UserName. Subscribe to: Posts (Atom). How to Get Current User Name. View my complete profile. Configuring Search In Sharepoint (MOSS 2007). XDocument or XElement with XmlNamespace. Loading or parsing xml with namspaces are common in development scenarios.When we work with Xdocument and XElement there is no direct way to.
aspnetgotyou.blogspot.com
ASP.NET: January 2011
http://aspnetgotyou.blogspot.com/2011_01_01_archive.html
Saturday, January 8, 2011. Creating Custom Sections and Encrypting the Section in web.config. Creating Custom Sections and Encryption in web.config. Web application development need different kind of customization,one of the common scenario is creation custom sections in web.config.For the ease of development .net framework supports different set of custom sections.There are mainly three kind custom section. UserInfo UserName ="Myuser" Password ="* * " Domain ="MyDomain"/. Read the data from code. System...
aspnetgotyou.blogspot.com
ASP.NET: How to Get Current User Name
http://aspnetgotyou.blogspot.com/2010/11/how-to-get-current-user-name.html
Wednesday, November 3, 2010. How to Get Current User Name. All the developers might have coded atleast once for finding the current context User. System.Windows.Forms.SystemInformation.UserName. Subscribe to: Post Comments (Atom). How to Get Current User Name. View my complete profile. Configuring Search In Sharepoint (MOSS 2007). XDocument or XElement with XmlNamespace. Active Directory (AD) - C# .NET. Creating Custom Sections and Encrypting the Section in web.config. Binary to String Conversion in C#.
sharepoint2010shyju.blogspot.com
Sharepoint 2010: Features in Sharepoint 2010
http://sharepoint2010shyju.blogspot.com/2010/06/features-in-sharepoint-2010.html
Thursday, June 24, 2010. Features in Sharepoint 2010. Performance Monitoring and Request Throttling. Silverlight Integration and Cross-Domain Data Access. Windows PowerShell for SharePoint. Custom Field Rendering Enhancements. Mobile Device Development Enhancements. Enterprise Content Management (ECM) Enhancements. SharePoint Enterprise Search Enhancements. User Profiles Enhancements and Social Data. Databases per Web App and App Pools per Server. Subscribe to: Post Comments (Atom). Ajax Integration with...
shyjumohan.blogspot.com
Configuring Search In Sharepoint (MOSS 2007): Configuring Sharepoint Service Provider (MOSS 2007 SSP)
http://shyjumohan.blogspot.com/2007/03/configuring-sharepoint-service-provider.html
Configuring Search In Sharepoint (MOSS 2007). Monday, March 19, 2007. Configuring Sharepoint Service Provider (MOSS 2007 SSP). Configuring Sharepoint service provider is one of the important task when you are setting up a sharepoint server (MOSS 2007). The following steps will help you in creating and configuring SSP. What are the prerequisites for configuration? The important one is the user account . Configuring the SSP (Shared Service Provider). 3 Click on New SSP. 5 Select Create a new IIS web site.
tipsattricks.blogspot.com
Tips And Tricks: String or StringBuilder to stream/memorystrem
http://tipsattricks.blogspot.com/2009/11/string-or-stringbuilder-to.html
Tuesday, November 24, 2009. String or StringBuilder to stream/memorystrem. String myString = sb.ToString();. Byte[] myByteArray = System.Text.Encoding.UTF8.GetBytes(myString);. MemoryStream ms = new MemoryStream(myByteArray);. Subscribe to: Post Comments (Atom). String or StringBuilder to stream/memorystrem. Shrinking SQL Server Database and Transaction Log. View my complete profile. Configuring Search In Sharepoint (MOSS 2007). String or StringBuilder to stream/memorystrem. WSP Builder Extension Error (...