Monthly Archives: June 2013

Visual Studio 2013 installation can go up to more than 8 hours

I started at 10 am and ended at 6.25 pm. So sometime installing over the Internet is not a good idea.

Posted in .Net | Tagged , | Leave a comment

SharePoint-Hosted application does not support C# in SharePoint 2013

C# has to run at the backend so SharePoint-hosted application cannot use C#. Do not waste your time to make C# work in SharePoint 2013 SharePoint-Hosted application.   Check this: http://channel9.msdn.com/Events/TechEd/NorthAmerica/2013/SES-B202#fbid=EE7dwZV8ma3

Posted in .Net | Tagged | 1 Comment

Where to download Visual Studio 2012 Test Controller

When you want to download the Test Controller for Visual Studio 2012 from MSDN then do not type “Test Controller”. You will see the following screen if you type “Test Controller”. Nothing in the search is correct.   The correct … Continue reading

Posted in .Net | Tagged , | Leave a comment

How to clone a List in SharePoint 2013

When you read an article Copying or moving SharePoint lists http://office.microsoft.com/en-001/windows-sharepoint-services-help/copying-or-moving-sharepoint-lists-HA001154562.aspx You will see a section like the following: 1.         Create a list template based on the list. How? 1.         On the top link bar, click Documents and Lists. 2.         … Continue reading

Posted in .Net | Tagged , | 7 Comments

Read and write a text file using C#

The sample below is one of the most use functionality in programming. public static void ReadWriteString(string strInFile, string strOutFile) {    String strLine;      List<string> strList = new List<string>();    StreamReader streamReader = new StreamReader(strInFile);      StreamWriter sw … Continue reading

Posted in .Net | Tagged , | 2 Comments

AMD Server APU Processor

AMD today publicly disclosed its strategy and roadmap to recapture market share in enterprise and data center servers by unveiling innovative products that address key technologies and meet the requirements of the fastest-growing data center and cloud computing workloads. Additionally, … Continue reading

Posted in .Net | Tagged , | Leave a comment

How to create and deploy SharePoint 2013 online application

1. When you create a project then you must choose Office/SharePoint -> Apps -> App for SharePoint 2013.   2. When you are in the New app for SharePoint dialog then you must choose SharePoint-hosted in How do you want … Continue reading

Posted in .Net | Tagged , | Leave a comment

.NET SDK for Jira to update Jira issue status

There are 2 SDK I have evaluated. 1. https://github.com/techtalk/JiraRestClient 2. https://bitbucket.org/farmas/atlassian.net-sdk/wiki/Home Techtalk cannot update the status of the jira issue. Atlassian .NET SDK is able to but you need to remark a line. I could not remember which line I … Continue reading

Posted in .Net | Tagged , , | Leave a comment

Folder attribute turn Hidden due to Virus or Malware

When you see all the folders become Hidden then most like you have attacked by Malware or Virus. Go to your command prompt and type. attrib -H -S *.* /s /d

Posted in Operating System | Tagged , , | Leave a comment

The required anti-forgery form field "__RequestVerificationToken" is not present. Ensure that cookies are enabled in your browser.

If you go to TFS site and want to add a user, you might get the error: The required anti-forgery form field “__RequestVerificationToken” is not present. Ensure that cookies are enabled in your browser.   There is no solution that … Continue reading

Posted in .Net | Tagged | 1 Comment