hi all,
I have studied from the link
http://aspnet.4guysfromrolla.com/articles/030503-1.aspx to use google web service....
i have downloaded the googleAPI's and also got a license key ....i had written the following code
private void Page_Load(object sender, System.EventArgs e)
{
GoogleWS.GoogleSearchService objG= new GoogleWS.GoogleSearchService();
GoogleWS.GoogleSearchResult objSR= new GoogleWS.GoogleSearchResult();
objSR= objG.doGoogleSearch("6RRqhWJQFHLaBMZIsXVxWL/vE3HowiKC","ASP",0,10,true,"",true,"","","");
DLsearch.DataSource=objSR.resultElements;
DLsearch.DataBind();
}
but the problem is that i am getting the error "DataBinder.Eval: 'usingwebS.GoogleWS.ResultElement' does not contain a property with the name title. "
name is a properety of array object resultElements......can anyone suggest me some solution to the problem......i have struggled the whole night but got no solutions....i have also add the ref for the web service
Kindly help....
Rohit