i want to login to gmail using asp.net ,however when i use the http post method with ....

it returns your browser is not accepting cookies?...and in the internet explorer its sign's in ..whats the problem n what to look for ...And if any one has code how to login to gmail ...I will be very thankfull.

link|improve this question

14% accept rate
feedback

3 Answers

<form  method="post" action="https://www.google.com/accounts/ServiceLoginAuth?service=mail" id="gaia_loginform">
 <input type="hidden" value="http://mail.google.com/mail/?hl=en&tab=wm" id="continue" name="continue"/>
  <input type="hidden" value="mail" id="service" name="service"/>

  Username:<input type="text"  value="" size="18" id="Email" name="Email"/>

  Password:<input type="password"  size="18" id="Passwd" name="Passwd"/>
  <input type="submit" value="Sign in" name="signIn"/>  

</form>

You can use google api also http://code.google.com/apis/contacts/docs/1.0/developers_guide_dotnet.html#client_login

link|improve this answer
feedback

You probably need to read this: http://code.google.com/apis/gmail/

link|improve this answer
Actually i want to login to google.adword.tool – Ehsan Kayani Oct 18 '10 at 13:04
feedback

That is because you have signed into gmail with your IE therefore it has the cookie. if you want to login to gmail with ASP.NET you have to use a library like this

EDIT: if you need to login to Google adword you can use this

link|improve this answer
this is jus sending mmain? – Ehsan Kayani Oct 18 '10 at 13:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.