Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Wednesday, February 8, 2012

Changing Team Foundation Server Credentials

You connect to TFS from the standard Visual Studio Team Explorer it remembers the credentials used to connect to the server. 



1.To clear the credential cache  Start ==> Run  ==>control userpasswords2  ==>Press Enter Key




Click Advance Tab








Click Managed Password






Click Remove from Vault


Enjoy .... :)

Thursday, February 2, 2012

How to override Corev4.css?



   You can link your custom stylesheet to master page using CssRegistration "After" attribute will load your stylesheet after corev4.css as shown below.

<SharePoint:CssRegistration name="/Style Library/sitename/style.css"  After="corev4.css" runat="server"/>

You needn't copy the entire classes from corev4. Override only those whose styles you want to change, the rest will use default styles coming from corev4 or other default sharepoint css.

 

<SharePoint:CssRegistration name="/Style Library/sitename/style.css"  After="corev4.css" runat="server"/>

 

Thursday, December 1, 2011

What is Sharepoint?

What is Sharepoint?

SharePoint isn't Program .its a platform

SharePoint is a server product


What it's Do? and 6 Pillars of SharePoint:






Wednesday, October 19, 2011

how to give List and Document Permissions?

List and  Document Permissions:

Shared Documents  èLibrary tabèLibrary PermissionsèGrant Permissions

Tuesday, May 10, 2011

Changing Port Number For Central Admin

We can chnage Port Number for central Admin .follwoing stscommand

Stsadmin -o setadminport -port 6666


-DotNet Help http://www.jsdotnetsupport.com/

Tuesday, April 19, 2011

Debug Program avoid Attach Process-c#.net Tips

 
 
If you  need to debug an application in a point where it's difficult to attach debugger manually
 
You can use following code  anywhere in your application
 
System.Diagnostics.Debugger.Break();
 
or
 
#Region
 
System.Diagnostics.Debugger.Break();
 
#Endregion
 
 


--
J.SuThahar MCA 
MicroSoft Technology Specialist
Microsoft Certified ProfessionalDeveloper
www.jsuthahar.tk
09943151415


Wednesday, April 6, 2011

Sending email Sputility in Sharepoint

Configure Email in IIS server:

http://technet.microsoft.com/en-us/library/cc263462.aspx#section2

WebPart Coding:

 SPWeb thisWeb = SPControl.GetContextWeb(Context);
                string toField = "suthahar@gmail.com";
                string subject = "Test Message";
                string body = "Message sent from SharePoint";
                bool success = SPUtility.SendEmail(thisWeb, true, true, toField, subject, body);