For one of my requirement used the below url for configuring iFilter for SharePoint 2010.
Monday, October 10, 2011
Wednesday, September 14, 2011
Search / Find using Excel formulas
There are couple of functions (Search and Find) which we can use to search the string in a Excel cell.
The main difference between Search and Find is Search is not a case sensitive.
If the Find/Search fails to find the given input string it will update with an error #VALUE other wise it returns the index of the string.
=ISERR(FIND("Find String","Its there in this Find String",1))
=ISERR(SEARCH("Find String","Its there in this Find String",1))
The main difference between Search and Find is Search is not a case sensitive.
If the Find/Search fails to find the given input string it will update with an error #VALUE other wise it returns the index of the string.
=ISERR(FIND("Find String","Its there in this Find String",1))
=ISERR(SEARCH("Find String","Its there in this Find String",1))
Thursday, June 9, 2011
Debugging the Network traffic(Testing whether the HTTP headers going fine or not?)
I was trying to debug the outgoing request headers whether the Accept-Encoding flag is set or not. One way to do that is setting up a proxy server and diverting all the web traffic through that proxy channel. But i don't want to set a proxy server.
After searching in google I found the following tool, its called fiddler, which will display all the web trafic in a details format.
I found it very helpful.
Video: http://www.fiddler2.com/fiddler/help/video/FiddlerQuickStart.wmv
Download link: http://www.fiddler2.com/fiddler2/version.asp
After searching in google I found the following tool, its called fiddler, which will display all the web trafic in a details format.
I found it very helpful.
Video: http://www.fiddler2.com/fiddler/help/video/FiddlerQuickStart.wmv
Download link: http://www.fiddler2.com/fiddler2/version.asp
Thursday, June 2, 2011
Simple command to move all the out put dlls to a specific target
I have been trying to automate the process 'Build sln file and copy all the latest dlls to a specific output folder other than /bin/Debug or /bin/Relase' (Similar to RiskSpan N:\ContinuousBuild). But the problem there was we need the CrusiseControl running continously.
The following command made my life easy to recompile all the projects associated with the sln file and copy to specified output folder (in this case C:\Users\Anumolu\Desktop\ContinousBuild\).
use VS cmd prompt and goto the project folder where the .sln file is located and run the following command with modified out put folder path.
The following command made my life easy to recompile all the projects associated with the sln file and copy to specified output folder (in this case C:\Users\Anumolu\Desktop\ContinousBuild\).
use VS cmd prompt and goto the project folder where the .sln file is located and run the following command with modified out put folder path.
msbuild /property:WarningLevel=2;OutDir=C:\Users\Anumolu\Desktop\ContinousBuild\
Monday, May 30, 2011
Editing Page in SharePoint Designer 2010 with Advance Mode
I have tried to edit a page and got a code that was marked in yellow. In addition, the Ribbon was missing some of the tabs. I was unable to edit the code on the page.
Solution:Click on “Advance Mode” button that is located on the Ribbon.
Once you have clicked it, you’ll see the other tabs and you will be able to edit the page.
Solution:Click on “Advance Mode” button that is located on the Ribbon.
Once you have clicked it, you’ll see the other tabs and you will be able to edit the page.
Sunday, April 3, 2011
Yeshwant kanetkar articles
Wn ever i need C# fundamentals i would prefer Yeshwant kanetkar's C# Fundas book. The following link has few articles published by Yeshwant kanetkar.
Subscribe to:
Posts (Atom)