TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
nisha rayte
NA
35
16.2k
insert Google Analytics API query string Output in to Datatable
Oct 12 2012 10:09 AM
var request = _service.Data.Ga.Get(
"ga:" + myProfiles.Items[0].Id,
"2012-06-01", // start date
"2012-06-30", // end date
"ga:visitors,ga:pageviews" // metrics to include in report
);
request.Dimensions = "ga:date";
//request.Filters = "";
request.Sort = "ga:date";
request.StartIndex = 1;
request.MaxResults = 500;
GaData results = request.Fetch();
In Above Code the I want to asign the Object of GaData ( results ) to Datyatable.How can i Do this?
plz Provide me Ans..!!
Reply
Answers (
0
)
Google Analytic API Query output into Data Table
how to delete multiple row in gridview by select the checkbox in asp.net with c# with example