Enable two options in your computer BIOS setting
Virtualization
+[x] Virtualization Technology
+[x] VT-d Feature
Monday, December 30, 2013
Monday, December 23, 2013
How to deal with “An error occurred on the server when processing the URL” problem for classic ASP?
This is a generic error for classic ASP hosted on IIS 7.
Go to IIS Server feature: ASP
Enable option: Send Errors to Browser
Then will find underneath real problem
Go to IIS Server feature: ASP
Enable option: Send Errors to Browser
Then will find underneath real problem
Friday, December 20, 2013
Thursday, December 19, 2013
How to access Google spreadsheet by C#?
SpreadsheetsService myService = new SpreadsheetsService("test");
myService.setUserCredentials("AAA@gmail.com", "password");
SpreadsheetQuery query = new SpreadsheetQuery();
SpreadsheetFeed feed = myService.Query(query);
Console.WriteLine("Your spreadsheets:");
foreach (SpreadsheetEntry entry in feed.Entries)
{
Console.WriteLine(entry.Title.Text);
}
API download link:https://code.google.com/p/google-gdata/downloads/detail?name=Google_Data_API_Setup_2.2.0.0.msi&can=2&q=
http://stackoverflow.com/questions/725627/accessing-google-spreadsheets-with-c-sharp-using-google-data-api
Subscribe to:
Posts (Atom)