E-mail data is private, you cannot access.

You can send data using http post. It's easy to receive data using an
asp.net page.

Just a piece of code..

function sendPost()
{
* postdata = {
 key1: value1,*
* key2: value2*
*  }
postdata = gadgets.io.encodeValues(postdata);*
*params = {};
params[gadgets.io.RequestParameters.METHOD] = gadgets.io.MethodType.POST;
params[gadgets.io.RequestParameters.POST_DATA]= postdata;*
* *
*gadgets.io.makeRequest("http://www.myexample.com/page.aspx"; , onResponse,
params);*

}

//callback
function onResponse(ret)
{

  //handle return..

}

asp.net page sample... (very very simple sample)

protected void Page_Load(object sender, EventArgs e)
{
     string key = Request.Form["key1"];
     string key2 = Request.Form["key2"];

     //do whatever you want...

}

Hope it helps.

--Robson

2008/11/18 anand agarwal <[EMAIL PROTECTED]>

>
> hello everybody,
> i have a created one sample application in sandbox.orkut site i.e.
> list of my friend. you can also see "http://sandbox.orkut.com/
> Main#Application.aspx?uid=&appId=1042869266155" here. i want to import
> all this application data on my site. In short i want to import all my
> friend's email address on my site after login. i am a c#
> developer.please advise me how can i do? This is very urgent because i
> have all ready spend more time for this work.please help me.
>
> Thanks,
> Anand Agarwal
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Implementing OpenSocial Containers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/opensocial-container?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to